[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | Black Desert NA/EU (2024)

  • Move to the main page
  • Forums
  • English
  • Life Skill

'; 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, '[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | 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 }); }

#Life Skill #Gathering #Fishing #Hunting #Cooking #Alchemy #Trade #Sailing

Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides

Jul 13, 2023, 23:28 (UTC)

3959 1 8 2

Last Edit : Aug 9, 2023, 21:32 (UTC)

# 1

[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | Black Desert NA/EU (2)

Whether you're stuck on the Land of the Morning Light or you're curious about Lifeskilling on the new Island, with some preperation, and some hardwork. Hitting Artisan and Master on almost all the Lifeskills with the exception of Bartering of course is still possible even without touching the mainland!

Just in case you've been searching around for that certain Ingredient or Material, helpful guide should have you out there gathering quicker knowing all (or most} Gathering Locations!

Curious about Fishing? Though Fishing around the island may not get the money like with other places but with a quick trip it's easier to make huge amounts of money with Harpoon Fishing out in the Margoria Sea now that the Land of the Morning Light is closer to Margoria than the Mainland!

Maybe Cooking and Alchemy is something you're into! There's plenty of different Dishes and ingredients that can be gathered to quickly level! Some are easier than other while some are more obscure! Whatever the case, there's enough choices here to hit Master Cooking and Alchemy faster!

Curious about all the Nodes on the Land of the Morning Light? Setting up a Worker Empire on the island is extremely easy, cheap, and most importantly has tons of goodies for both the new player and older players! From Gathering Nodes to Worker Factories the Land of the Morning Light Worker Empire is something that should be checked out!

If you're in need of Energy and need some ways to recover the most back or just the fastest way while lifeskilling, dont worry! There's plenty of options that can be done with able to recover 500 Energy AND +40 Energy every 3 minutes!

Still looking for those Strange and Beautiful Herbs but they're proving to be hard or you just cant seem to find the locations anywhere. Here's an easy to use or save map made to help out those searches and speed up how many herbs can be found per night cycle!

[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | Black Desert NA/EU (3)

Teddy's Twighlite's Strange and Beautiful Herb Map

Still looking to get the most from Lifeskilling on the Land of the Morning Light? Why not try looking for the Forest Crystals needed to make the new Life Crystal that gives +10% EXP and Vital Crystals that give +10 Mastery to the Lifeskills you choose! The new Sniper Hunting area is perfect just for that!

And, If all this convinced you to take a trip out to the Land of the Morning Light, there's a couple ways with some easier than others! And remember, these ways CAN be used to leave the island too if you feel like you're stuck in the new Region!

[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | Black Desert NA/EU (4)
I hope this helps you get started Lifeskilling on the Land of the Morning Light easier! With an island that has so much Lifeskilling activities to enjoy, whether your brand new or just starting to Lifeskill. These should get you started or at least an idea of what you want to do out on the Land of the Morning Light. Feel free to let me know if theres anything wrong or if I can do anything better but in the mean time, keep gathering out there!

FinalsTwin

28 57

Reply

Submit Reply

Life Skill

Share your tips and advice related to Life Skill content.

Start New Topic

[Life Skill] Teddy Twighlite's Ultimate Land Of The Morning Light Lifeskill Guides | Black Desert NA/EU (2024)

FAQs

What is the most profitable life skill in BDO? ›

Gathering is one of the most active life skills in the game but players might find it preferable to fishing especially if they're looking for Black Crystal Shards. Because it can be more lucrative than farming when it comes to getting lucky with those Shards.

What are the life skill levels in black desert? ›

The life skill titles are the following, in order: Beginner, Apprentice, Skilled, Professional, Artisan, Master, and Guru. As you advance through the levels of each life skill, you will receive rewards through completed challenges (hotkey: Y).

Are life skills important in BDO? ›

There are 10 Life Skills in Black Desert that every class can learn. These skills are essential to helping you make money, obtain the highest tier horses, create your own equipment and many other benefits.

Is BDO mostly solo? ›

2 Black Desert Online

Much of the content in Black Desert Online is geared toward solo play. As there is no structure, you can interact with other players as little or as often as you want.

What is the max pet level in Black Desert? ›

Although pets can only be upgraded to Tier 4 by pet breeding, you can train your pet from tier 4 to tier 5 with a 100% chance. To train a pet to tier 5, you need a tier 4 pet and your character must be at least level 60. You can then obtain the quest “[Pet] Domesticated Squabbles” from your Black Spirit.

Is there a max level in Black Desert? ›

No Level Cap in Black Desert Online

Black Desert has a steep leveling curve, as many adventurers will find that the grind needed to rank up starting from 60 becomes exponentially high. While there is no max level, Black Desert Online has a concept for soft and hard caps.

Is gathering a life skill in BDO? ›

Gathering is one of many life skill type that BDO has. As a gatherer you can gather any type of items that needed for alchemy, cooking, or processing. You can sell your gathered items on central market or you can make use of the items for your own.

Is processing a life skill BDO? ›

Processing is an easy life skill to get into and every player will process materials at some point. It is a passive AFK activity for silver.

Can you learn all skills in Black Desert? ›

In Black Desert, the more you level up the more skills you can learn. Through defeating monsters and completing quests you'll get enough skill experience to obtain all the skill points you require to learn all available skills.

What are the most profitable meals in BDO? ›

Imperial Cooking
BoxMaterialProfit per Box (Buying)
Guru's Cooking BoxValencia Meal x18577,688
Guru's Cooking BoxSpecial O'dyllita Meal x5575,488
Guru's Cooking BoxBig Hard-Boiled Shellfish x4567,488
Guru's Cooking BoxMediah Meal x15561,488
26 more rows

Which is the best job in BDO? ›

There are a few classes that can be regarded as the best in the game:
  • Sorceress Awakening.
  • Warrior Succession.
  • Ninja Succession.
  • Witch Succession.
  • Lahn Succession.
  • Guardian Succession.
Jul 5, 2024

What is the best grinding BDO class? ›

Guardian is probably the most recommended class in BDO and for good reason. Guardian feels like a tanky and slow class in the beginning, but once you get to the end game content, she does incredibly well. Guardian's Awakening is the perfect choice for endgame PVE grinding.

Top Articles
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5659

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.