[General Gameplay] Tuvala Pendant after Season End (No Graduation) | Black Desert NA/EU (2024)

  • Move to the main page
  • Forums
  • English
  • General Discussion
  • General Gameplay

'; 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, '[General Gameplay] Tuvala Pendant after Season End (No Graduation) | 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 }); }

Tuvala Pendant after Season End (No Graduation)

Feb 17, 2023, 18:26 (UTC)

1445 2 1 0

Last Edit : Feb 17, 2023, 18:26 (UTC)

# 1

Question: What will happen to Tuvala Pendants now if you don't have a Conversion Stone if you weren't able to complete the season pass? Were the resources spent on enhancement wasted now since you won't be able to convert it into an actual weapon?

Last Edit : Feb 17, 2023, 18:59 (UTC)

# 2

Tuvala Pendants were also automatically converted to non-seasonal Tuvala at the end of the season otherwise it would have been deleted from your inventory and no longer exist.

In this way, it is treated exactly like a regular Tuvala awakening weapon.

Graduation always happens, the conversion stones come from 'Early Graduation'.

But if the season ends and you don't Early Graduate, that just becomes a regular (forced) 'Graduation' and conversion stones are automatically applied according to this priority https://www.naeu.playblackdesert.com/en-US/Wiki?wikiNo=241#3

Order of Priority for Tuvala Gear Conversion

① Tuvala gear of the highest enhancement level for each set piece without having used Conversion Stones.

(One for each piece, with the exception of up to two earrings and two rings = maximum of 13)

E.g.) If you have “PEN (V) Tuvala Gloves” and “TRI (III) Tuvala Gloves,” your PEN (V) Tuvala Gloves will be automatically converted if you haven’t used [Season] Tuvala Glove Conversion Stones.

If you have two or more gear of the same enhancement level, the piece to be converted will be chosen according to the second order of priority.

② Tuvala gear branded with the Item Brand Spell Stone

E.g.) If you have branded PEN (V) Tuvala Gloves and PEN (V) Tuvala Gloves that are not branded, your branded PEN (V) Tuvala Gloves will be converted.
If you have two or more gear pieces of the same enhancement level, and they are either both branded or both not branded, conversion will be applied according to the third order of priority.

③ The most recently crafted Tuvala gear

E.g.) If you have a non-branded PEN (V) Tuvala Longsword crafted on Nov. 1 and a non-branded PEN (V) Tuvala Amulet crafted on Nov. 10, your PEN (V) Tuvala Amulet that was crafted more recently will be converted.

* If your Inventory is full, you’ll find them in your storage in Heidel.

The Pendant is simply a placeholder for classes without awakening yet, when awakening releases, you will be able to exchange the Pendant for the new awakening weapon.

Baboon

0 16

Lv Private

Cheddar

Reply

Submit Reply

General Gameplay

All discussion related to BDO Gameplay.

Start New Topic

[General Gameplay] Tuvala Pendant after Season End (No Graduation) | Black Desert NA/EU (2024)
Top Articles
Una oración por las mujeres
Rut: 5 oraciones basadas en su ejemplo | Mujeres de la Biblia | Coalición por el Evangelio
WALB Locker Room Report Week 5 2024
Walgreens Boots Alliance, Inc. (WBA) Stock Price, News, Quote & History - Yahoo Finance
My Arkansas Copa
Satyaprem Ki Katha review: Kartik Aaryan, Kiara Advani shine in this pure love story on a sensitive subject
Missing 2023 Showtimes Near Cinemark West Springfield 15 And Xd
Otterbrook Goldens
Top 10: Die besten italienischen Restaurants in Wien - Falstaff
Holly Ranch Aussie Farm
Walgreens Alma School And Dynamite
Wal-Mart 140 Supercenter Products
Tlc Africa Deaths 2021
What's New on Hulu in October 2023
Tv Schedule Today No Cable
My Vidant Chart
Tight Tiny Teen Scouts 5
Craigslist Labor Gigs Albuquerque
Otr Cross Reference
Why Is Stemtox So Expensive
OpenXR support for IL-2 and DCS for Windows Mixed Reality VR headsets
Craiglist Kpr
Second Chance Maryland Lottery
Urban Airship Expands its Mobile Platform to Transform Customer Communications
1v1.LOL - Play Free Online | Spatial
Free Online Games on CrazyGames | Play Now!
Milanka Kudel Telegram
Euro Style Scrub Caps
Dr Ayad Alsaadi
2013 Ford Fusion Serpentine Belt Diagram
Jayme's Upscale Resale Abilene Photos
Kitchen Exhaust Cleaning Companies Clearwater
Watertown Ford Quick Lane
Leben in Japan &#8211; das muss man wissen - Lernen Sie Sprachen online bei italki
Tamil Movies - Ogomovies
Mini-Mental State Examination (MMSE) – Strokengine
R/Mp5
How Much Is An Alignment At Costco
Davita Salary
Jr Miss Naturist Pageant
8005607994
Is The Nun Based On a True Story?
Indiana Jones 5 Showtimes Near Cinemark Stroud Mall And Xd
20 bank M&A deals with the largest target asset volume in 2023
Jetblue 1919
Bekah Birdsall Measurements
Gregory (Five Nights at Freddy's)
Blackwolf Run Pro Shop
✨ Flysheet for Alpha Wall Tent, Guy Ropes, D-Ring, Metal Runner & Stakes Included for Hunting, Family Camping & Outdoor Activities (12'x14', PE) — 🛍️ The Retail Market
Stosh's Kolaches Photos
Squalicum Family Medicine
The Hardest Quests in Old School RuneScape (Ranked) – FandomSpot
Latest Posts
Article information

Author: The Hon. Margery Christiansen

Last Updated:

Views: 6242

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: The Hon. Margery Christiansen

Birthday: 2000-07-07

Address: 5050 Breitenberg Knoll, New Robert, MI 45409

Phone: +2556892639372

Job: Investor Mining Engineer

Hobby: Sketching, Cosplaying, Glassblowing, Genealogy, Crocheting, Archery, Skateboarding

Introduction: My name is The Hon. Margery Christiansen, I am a bright, adorable, precious, inexpensive, gorgeous, comfortable, happy person who loves writing and wants to share my knowledge and understanding with you.