[General Discussion] Enhanced flax fabric | Black Desert (2024)

Black Desert will begin in a moment.

Install the Black Desert launcher if your game doesn't start.

Please Install the Black Desert launcher to start the game.

Download the Black Desert Launcher

1 Run the downloaded - file to install the Black Desert launcher.

2 Please start the game once installation is complete.

'; 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 Discussion] Enhanced flax fabric | Black Desert (2)') } 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) { $('div#' + id).remove(); var uploadLimitSizeValue = _fileLimitSize; youtubePlugin(); customUploadPlugin(attachFilePath, uploadLimitSizeValue); tinymce.init({ selector: '#' + id, mobile: { theme: 'mobile', plugins: 'image table link media customupload youtube paste', toolbar: 'undo redo | formatselect | bold italic strikethrough forecolor backcolor fontsizeselect | alignleft aligncenter alignright alignjustify | link customupload image youtube table', default_target_link: '_blank', media_dimensions: false, media_poster: false, relative_urls: false, remove_script_host: false, fontsize_formats: '10px 11px 12px 13px 14px 15px 16px 17px 18px 19px 20px 24px 36px 48px', 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'); }, 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); }); } }, height: 400, plugins: 'image table link media customupload 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, fontsize_formats: '10px 11px 12px 13px 14px 15px 16px 17px 18px 19px 20px 24px 36px 48px', image_title: true, object_resizing: ":not(table):not(iframe)", paste_data_images: true, file_picker_callback: function (callback, value, meta) { var fileInput = $(''); $('body').append(fileInput); fileInput.trigger('click'); fileInput.on('change', function () { 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); _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); }, paste_preprocess: function (plugin, args) { args.content = args.content .replace(/font-(family|size):.*?;/g, '') .replace(//g, '') .replace(/id=\"([^"]*)\"|id=\'([^"]*)\'|class=\"([^"]*)\"|class=\'([^"]*)\'/g, '') .replace(//g, ''); }, }); }

Community

  • Home
  • Community
  • General Discussion
  • General Discussion

Enhanced flax fabric

RedB*** 2020-06-11 13:35

1057 2 0 0

# 1

Edit Date :11.06.2020

Is anyone able to make enhanced flax fabric? Apparently the quest line to get the knowledge to make it "the best jewel" is need to be completed but the quest line stopped at "the best cook" is it a bug? Or not introduced into the game yet. I waspreparing the mats forthe frigate.

Character Name RedB***

Main Character

# 2

Edit Date :11.06.2020

5 hours ago, RedBack said:

Is anyone able to make enhanced flax fabric? Apparently the quest line to get the knowledge to make it "the best jewel" is need to be completed but the quest line stopped at "the best cook" is it a bug? Or not introduced into the game yet. I waspreparing the mats forthe frigate.

There is a quest in Calpheon City from the Material Vendor, Geranoa, called "The Best Jewel." Complete that quest to gain knowledge on Enhanced Flax Fabric.

Character Name Tr3***

Main Character

# 3

Edit Date :12.06.2020

Yeah just found out there's a whole quest line to do to unlock the best jewel.

Character Name RedB***

Main Character

FeedbackTopicEnhanced flax fabric

Register

Go to List

  • GvGs at Garmoth 13.06.2020 2 656 Yia*** 13.06.2020
  • Volley system with cannons on ships 12.06.2020 8 696 Lost_So*** 12.06.2020
  • Enhanced flax fabric 11.06.2020 2 1.1K RedB*** 11.06.2020
  • Still no Cron meals 10.06.2020 16 1.3K Kian2*** 10.06.2020
  • Abyssal Weapon Exchange quest 09.06.2020 2 2.4K GoD_*** 09.06.2020

Create Post

TOP

[General Discussion] Enhanced flax fabric | Black Desert (2024)
Top Articles
Latest Posts
Article information

Author: Carmelo Roob

Last Updated:

Views: 5515

Rating: 4.4 / 5 (65 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Carmelo Roob

Birthday: 1995-01-09

Address: Apt. 915 481 Sipes Cliff, New Gonzalobury, CO 80176

Phone: +6773780339780

Job: Sales Executive

Hobby: Gaming, Jogging, Rugby, Video gaming, Handball, Ice skating, Web surfing

Introduction: My name is Carmelo Roob, I am a modern, handsome, delightful, comfortable, attractive, vast, good person who loves writing and wants to share my knowledge and understanding with you.