[Feedback] [Spot Changes] Revert Centaurs Changes | Black Desert NA/EU (2024)

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

'; 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, '[Feedback] [Spot Changes] Revert Centaurs Changes | 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 }); }

#Suggestions #Community Support

[Spot Changes] Revert Centaurs Changes

May 26, 2022, 13:22 (UTC)

1666 3 7 4

Last Edit : May 26, 2022, 13:22 (UTC)

# 1

After the rework, Centaurs Herd has become one of the most profitable areas. Not for its AP range, but for the entire game.

It yields 400mil/hours with trash *nly, up to 600+ mil/hour with other drops counted. On Garmoth.com, it outperforms everything except for good Olun's; and it is insane. Yes, it's an Agris spot, but it outperforms all other new Agris spots except for Oluns by far.Gyfin, Mirumok, Kratuga, Hystria, and Aakman are all miles behind. Even Elvia spots are performing worse. This feels like a bug more than anything.

A 190 AP spot should notbe more desirable to players than all other spots bar the single best one. There's not reason to progress or move through the map of the world; you can sit on centaurs daily until you reach hardcap. Moreover, it will make the area designed for new players entirely inaccessible to them: actual 190-240 AP players will not be able to compete with 600++gs people for the spot.

This change might be one of the worst, if not the works, for the game's health. Overall spots change was one of the greatest updates, but this Centaurs thing undermines all effort.

Please fix it.

Last Edit : May 26, 2022, 17:23 (UTC)

# 2

Agreed. No 190 spot should be sporting that much silver per hour unless PA is planning on seriously buffing late game spots that are much harder difficulty wise. Otherwise, why waste time going anywhere above 190 ap zones risking contestion and dying to tougher mob mechanics for less money...

VeryLargeMango

11 74

Lv Private

Xienzhe

Last Edit : May 27, 2022, 19:21 (UTC)

# 3

make more of them. Your only argument is "but the nuuubz!!!"

noobz can go elsewhere with 100-200m less, noobz arent supposed to go to the best spot. Still they will get 1h 4 free.

Adonaj

46 1740

Lv 61

Adonaj

Reply

Submit Reply

Feedback

Share your feedback and suggestions to help us develop Black Desert.

Start New Topic

[Feedback] [Spot Changes] Revert Centaurs Changes  | Black Desert NA/EU (2024)
Top Articles
10 Day Trading Tips and How to Get Started
Can I Start Trading With $100?
Booknet.com Contract Marriage 2
Shs Games 1V1 Lol
Health Benefits of Guava
Teenbeautyfitness
Nikki Catsouras Head Cut In Half
Cnnfn.com Markets
Where does insurance expense go in accounting?
Cbs Trade Value Chart Fantasy Football
Mail.zsthost Change Password
Letter F Logos - 178+ Best Letter F Logo Ideas. Free Letter F Logo Maker. | 99designs
Brett Cooper Wikifeet
Palm Springs Ca Craigslist
Best Mechanics Near You - Brake Masters Auto Repair Shops
Iu Spring Break 2024
Bible Gateway passage: Revelation 3 - New Living Translation
Brazos Valley Busted Newspaper
Routing Number For Radiant Credit Union
Buying Cars from Craigslist: Tips for a Safe and Smart Purchase
Roane County Arrests Today
Engineering Beauties Chapter 1
Encyclopaedia Metallum - WikiMili, The Best Wikipedia Reader
Mini Handy 2024: Die besten Mini Smartphones | Purdroid.de
Tire Plus Hunters Creek
55Th And Kedzie Elite Staffing
Pay Stub Portal
ATM, 3813 N Woodlawn Blvd, Wichita, KS 67220, US - MapQuest
Kiddie Jungle Parma
Bernie Platt, former Cherry Hill mayor and funeral home magnate, has died at 90
Appleton Post Crescent Today's Obituaries
Agematch Com Member Login
Indiefoxx Deepfake
Craigslist Mount Pocono
Austin Automotive Buda
State Legislatures Icivics Answer Key
Zasilacz Dell G3 15 3579
Anya Banerjee Feet
8 Ball Pool Unblocked Cool Math Games
Review: T-Mobile's Unlimited 4G voor Thuis | Consumentenbond
Live Delta Flight Status - FlightAware
062203010
Pain Out Maxx Kratom
Advance Auto.parts Near Me
Pgecom
Conan Exiles Colored Crystal
Theater X Orange Heights Florida
Mike De Beer Twitter
Gelato 47 Allbud
Equinox Great Neck Class Schedule
Latest Posts
Article information

Author: Tuan Roob DDS

Last Updated:

Views: 6013

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Tuan Roob DDS

Birthday: 1999-11-20

Address: Suite 592 642 Pfannerstill Island, South Keila, LA 74970-3076

Phone: +9617721773649

Job: Marketing Producer

Hobby: Skydiving, Flag Football, Knitting, Running, Lego building, Hunting, Juggling

Introduction: My name is Tuan Roob DDS, I am a friendly, good, energetic, faithful, fantastic, gentle, enchanting person who loves writing and wants to share my knowledge and understanding with you.