[Game Play] Best PVE Crystal Presets Guide | Black Desert NA/EU (2024)

  • Move to the main page
  • Forums
  • English
  • Game Play

'; editor.focus(); editor.selection.collapse(true); editor.execCommand('mceInsertContent', false, html); api.close(); } }); } }); return { getMetadata: function () { return { name: 'youtube', url: 'www.pearlabyss.com' } } }; }); } function customUploadPlugin(attachFilePath, limitSize) { tinymce.PluginManager.add('customupload', function (editor) { editor.ui.registry.addButton('customupload', { icon: 'image', onAction: function () { var $fileInput = $(''); $('body').append($fileInput); $fileInput.trigger('click'); $fileInput.on('change', function () { _abyss.loading(true); if (limitSize <= this.files[0].size) { alert(_fileLimitErrorMessage); _abyss.loading(false); return; } var fileList = $(this).prop('files') || []; var fileCount = 0; for (var fileIndex = 0; fileIndex < fileList.length; fileIndex++) { var fileData = new FormData(); fileData.append('upload', fileList[fileIndex]); $.ajax({ async: false, type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: fileData, success: function (data) { fileCount++; if (data._resultCode == 0) { tinymce.execCommand('mceInsertContent', false, '[Game Play] Best PVE Crystal Presets Guide | Black Desert NA/EU (1)') } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } if (fileList.length === fileCount) { _abyss.loading(false); } }, error: function (err) { _abyss.loading(false); console.error(err); } }); } tinymce.execCommand('mceInsertNewLine'); }); }, }); return { getMetadata: function () { return { name: 'customupload', url: 'www.pearlabyss.com' } } }; }); } function dataURLtoFile(dataURL, filename, mimeType) { return ( fetch(dataURL).then(function (res) { return res.arrayBuffer(); }) .then(function (buf) { return new File([buf], filename, {type: mimeType});}) ); } function initCkeditor(id, attachFilePath) { if ($('#' + id).length <= 0) { return; }; var uploadLimitSizeValue = _fileLimitSize; $('div#' + id).remove(); youtubePlugin(); customUploadPlugin(attachFilePath, uploadLimitSizeValue); tinymce.init({ selector: '#' + id, mobile: { theme: 'mobile', plugins: 'image table link media youtube paste', toolbar: 'undo redo | formatselect | bold italic strikethrough forecolor backcolor fontsizeselect | alignleft aligncenter alignright alignjustify | link image youtube table', default_target_link: '_blank', media_dimensions: false, media_poster: false, relative_urls: false, remove_script_host: false, fontsize_formats: _font_format, images_upload_handler: function (blobInfo, success, failure) { _abyss.loading(true); if (uploadLimitSizeValue <= blobInfo.blob().size) { alert(_fileLimitErrorMessage); var $img = tinymce.dom.DomQuery(tinymce.activeEditor.getBody())[0].querySelector("img[src='" + blobInfo.blobUri() + "']"); $img && $img.remove(); _abyss.loading(false); return; } var xhr, formData; xhr = new XMLHttpRequest(); xhr.withCredentials = false; xhr.open('POST', '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json'); xhr.onload = function () { var json; if (xhr.status != 200) { failure('HTTP Error: ' + xhr.status); _abyss.loading(false); return; } json = JSON.parse(xhr.responseText); if (!json || typeof json._value != 'string') { failure('Invalid JSON: ' + xhr.responseText); _abyss.loading(false); return; } success(json._value); setTimeout(function () { _abyss.loading(false); }, 1000 * 1); }; xhr.onerror = function (e) { _abyss.loading(false); } formData = new FormData(); formData.append('upload', blobInfo.blob(), blobInfo.filename()); xhr.send(formData); tinymce.execCommand('mceInsertNewLine'); }, file_picker_callback: function (callback, value, meta) { var fileInput = $(''); $('body').append(fileInput); fileInput.trigger('click'); fileInput.on('change', function (e) { var formData = new FormData(); formData.append('upload', $(this).prop('files')[0]); if (uploadLimitSizeValue > 0 && formData.get('upload').size/1024/1024 >= uploadLimitSizeValue) { alert(_fileLimitErrorMessage); return; } $.ajax({ type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: formData }) .done(function (data) { if (data._resultCode == 0) { callback(data._value); } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } }) }); }, setup: function (editor) { editor.on('paste', function (e) { e.preventDefault(); var content = ((e.originalEvent || e).clipboardData || window.clipboardData).getData('text/html') .replace(/font-(family|size):.*?;/g, '') .replace(/

/g, '') .replace(/id=\"([^"]*)\"|id=\'([^"]*)\'|class=\"([^"]*)\"|class=\'([^"]*)\'/g, '') .replace(//g, ''); editor.execCommand('mceInsertContent', false, content); }); }, invalid_elements: _getBlacklistElem(), valid_styles: { '*': _getWhitelistStyle() }, extended_valid_elements: _getWhitelistElem(), block_formats: _block_size }, height: 400, plugins: 'powerpaste image table link customupload media youtube paste', menubar: '', toolbar: 'undo redo | formatselect | bold italic strikethrough forecolor backcolor fontsizeselect | alignleft aligncenter alignright alignjustify | link customupload youtube table', default_target_link: '_blank', language: 'en', media_dimensions: false, media_poster: false, relative_urls: false, remove_script_host: false, object_resizing: ":not(table):not(iframe)", fontsize_formats: _font_format, image_title: true, maximumImageFileSize: _fileLimitSize, file_picker_callback: function (callback, value, meta) { var fileInput = $(''); $('body').append(fileInput); fileInput.trigger('click'); fileInput.on('change', function () { _abyss.loading(true); if (uploadLimitSizeValue <= this.files[0].size) { alert(_fileLimitErrorMessage); _abyss.loading(false); return; } var formData = new FormData(); var fileName = this.files[0].name; formData.append('upload', $(this).prop('files')[0]); $.ajax({ type: 'POST', url: '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', contentType: false, processData: false, data: formData }) .done(function (data) { if (data._resultCode == 0) { callback(data._value, {title: fileName}); } else { alert(!!data._resultMessage ? data._resultMessage : _fileErroMessage); } }) }); }, images_upload_handler: function (blobInfo, success, failure) { _abyss.loading(true); if (uploadLimitSizeValue <= blobInfo.blob().size) { alert(_fileLimitErrorMessage); var $img = tinymce.dom.DomQuery(tinymce.activeEditor.getBody())[0].querySelector("img[src='" + blobInfo.blobUri() + "']"); $img && $img.remove(); _abyss.loading(false); return; } var xhr, formData; xhr = new XMLHttpRequest(); xhr.withCredentials = false; xhr.open('POST', '/FileUpload/index?subpath=' + attachFilePath + '&responseType=json', false); xhr.onload = function () { var json; if (xhr.status != 200) { failure('HTTP Error: ' + xhr.status); _abyss.loading(false); return; } json = JSON.parse(xhr.responseText); if (!json || typeof json._value != 'string') { failure('Invalid JSON: ' + xhr.responseText); alert(!!json._resultMessage ? json._resultMessage : _fileErroMessage); _abyss.loading(false); return; } success(json._value); setTimeout(function () { _abyss.loading(false); }, 1000 * 1); }; xhr.onerror = function (e) { _abyss.loading(false); } formData = new FormData(); formData.append('upload', blobInfo.blob(), blobInfo.filename()); xhr.send(formData); tinymce.execCommand('mceInsertNewLine'); }, paste_preprocess: function (plugin, args) { args.content = args.content .replace(/font-(family|size):.*?;/g, '') .replace(//g, '') .replace(/id=\"([^"]*)\"|id=\'([^"]*)\'|class=\"([^"]*)\"|class=\'([^"]*)\'/g, '') .replace(//g, ''); }, powerpaste_word_import: "propmt", powerpaste_html_import: "propmt", powerpaste_allow_local_images: false, //powerpaste_block_drop: true, paste_data_images: true, invalid_elements: _getBlacklistElem(), valid_styles: { '*': _getWhitelistStyle() }, extended_valid_elements: _getWhitelistElem(), block_formats: _block_size }); }

Best PVE Crystal Presets Guide

Apr 8, 2023, 21:27 (UTC)

2669 1 3 0

Last Edit : Apr 8, 2023, 21:27 (UTC)

# 1

Had quite a bit of help from some friends in the making of this video. It goes over some options for crystal presets aim towards Player vs Environment or PVE. I really enjoy making this video and I also went over some presets that are more budget friendly for newer players. Hope you enjoy and thank you for watching.

https://www.youtube.com/watch?v=rGg748-9FwA&ab_channel=Catrenza

Unknown

10 10

Lv 61

Unknown

Reply

Submit Reply

Game Play

Share your tips and advice related to gameplay.

Start New Topic

[Game Play] Best PVE Crystal Presets Guide | Black Desert NA/EU (2024)

FAQs

How do you set up crystals in BDO t2? ›

To setup your crystals (assuming you have some in your possession), you need to first add them into your crystal inventory – open your bags, click crystals and this will open your inventory where you can add any crystals you've purchased into. Once that's complete, talk to the Black Spirit and hit transfusion.

Is Black Desert online free? ›

Black Desert Online uses a free-to-play model in Korea, Japan and Russia, while in Taiwan, South East Asia, Europe, North America and South America the game uses a buy-to-play model.

What is the best PvE character in BDO? ›

The Succession Witch is easily the best PvE class in Black Desert Online. If you want the power to obliterate groups of enemies at a super high rate of speed in Black Desert Online, you want to play the Succession Witch. This means you're going to avoid the Awakening, which gives you a new type of weapon.

Is BDO mostly solo? ›

1 Black Desert Online

As such, it is close to being the perfect MMORPG for a player who wants to experience it like a single player game. Everything in the game can be completed solo; playing with others is just an option that's available.

How do you activate all crystals? ›

You can bury them in the ground to absorb the energy of the earth, or bury them in salt and water, this will help to activate them very well. Wash your crystals in full sunlight or moonlight, this will have a great positive impact on your crystals.

How to make ultimate combined magic crystal? ›

Ultimate Combined Magic Crystal - Hoom
  1. 50x Magical Shard.
  2. 1x HAN Combined Magic Crystal - Hoom.
  3. 1x Dark Red Fang Crystal - Armor.
  4. 100x Magical Lightstone Crystal.
  5. 1x Crystal of Harmony.

How to open crystal preset bdo? ›

1) Interact with a Blacksmith and click on the Extraction [4] menu. 2) Press the Extract Crystal button and open the "Owned Crystals" (Crystal Inventory) UI.

How many people are playing BDO? ›

Black Desert
MonthAvg. PlayersPeak Players
Last 30 Days17,774.124,527
June 202417,188.625,022
May 202415,972.021,829
April 202417,469.923,794
83 more rows

Is the BDO game pass permanent? ›

[Permanent Game Pass?]

If your account fulfills the event requirements, you'll receive the permanent game pass during the next following maintenance. * You can still purchase packages even if you have a Permanent Game Pass.

What is the best class for solo PvE d2? ›

Reddit users debate the best solo class for PvE content in Destiny 2. Warlock is praised for its self-healing and utility, while Titan excels in damage prevention and melee attacks. Hunters are favored for their stealth capabilities and weapon DPS.

What class is good for solo DDO? ›

Plenty are good for solo play - Ranger, Bard, Wizard, Arti, Druid. Basically as long as you have self-healing and some coherent DPS strategy, you can solo.

What is the best class to level solo WoW? ›

WoW Best Solo Class: Top 8 Specs for Solo Play
  • Beast Mastery Hunter.
  • Retribution Paladin.
  • Havoc Demon Hunter.
  • Guardian Druid.
  • Affliction/Demonology Warlock.
  • Brewmaster Monk.
  • Discipline Priest.
  • Conclusion.
Oct 14, 2023

What is the best beginner ship in BDO? ›

The basic starter ship for most Adventurers is the Bartali sailboat. However, you can opt to purchase an Epheria sailboat or frigate license from the Central Market to skip this step.

References

Top Articles
Latest Posts
Article information

Author: Nathanial Hackett

Last Updated:

Views: 5663

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Nathanial Hackett

Birthday: 1997-10-09

Address: Apt. 935 264 Abshire Canyon, South Nerissachester, NM 01800

Phone: +9752624861224

Job: Forward Technology Assistant

Hobby: Listening to music, Shopping, Vacation, Baton twirling, Flower arranging, Blacksmithing, Do it yourself

Introduction: My name is Nathanial Hackett, I am a lovely, curious, smiling, lively, thoughtful, courageous, lively person who loves writing and wants to share my knowledge and understanding with you.