[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

1042 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 646 Yia*** 13.06.2020
  • Volley system with cannons on ships 12.06.2020 8 684 Lost_So*** 12.06.2020
  • Enhanced flax fabric 11.06.2020 2 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
College athletes making most of creative NIL opportunities
WWE: The Cavinder Twins finally reveal their future wrestling plans
Genesis Parsippany
Craigslist Monterrey Ca
Best Big Jumpshot 2K23
Regal Amc Near Me
How Many Cc's Is A 96 Cubic Inch Engine
360 Training Alcohol Final Exam Answers
GAY (and stinky) DOGS [scat] by Entomb
Cranberry sauce, canned, sweetened, 1 slice (1/2" thick, approx 8 slices per can) - Health Encyclopedia
Craigslist Chautauqua Ny
Buying risk?
Beau John Maloney Houston Tx
D10 Wrestling Facebook
Hellraiser III [1996] [R] - 5.8.6 | Parents' Guide & Review | Kids-In-Mind.com
The Ultimate Style Guide To Casual Dress Code For Women
Violent Night Showtimes Near Amc Fashion Valley 18
Army Oubs
Zack Fairhurst Snapchat
Ups Print Store Near Me
Why do rebates take so long to process?
Employee Health Upmc
Mybiglots Net Associates
Tokyo Spa Memphis Reviews
The Fabelmans Showtimes Near Baton Rouge
Dell 22 FHD-Computermonitor – E2222H | Dell Deutschland
Paradise Point Animal Hospital With Veterinarians On-The-Go
Rays Salary Cap
Datingscout Wantmatures
Taktube Irani
Have you seen this child? Caroline Victoria Teague
Shiftwizard Login Johnston
Bt33Nhn
Gideon Nicole Riddley Read Online Free
Joplin Pets Craigslist
The 38 Best Restaurants in Montreal
Dollar Tree's 1,000 store closure tells the perils of poor acquisitions
Kornerstone Funeral Tulia
Sams Gas Price Sanford Fl
3 Zodiac Signs Whose Wishes Come True After The Pisces Moon On September 16
Differential Diagnosis
Watch Chainsaw Man English Sub/Dub online Free on HiAnime.to
844 386 9815
Alba Baptista Bikini, Ethnicity, Marriage, Wedding, Father, Shower, Nazi
Theater X Orange Heights Florida
Benjamin Franklin - Printer, Junto, Experiments on Electricity
Jackerman Mothers Warmth Part 3
2000 Ford F-150 for sale - Scottsdale, AZ - craigslist
Okta Login Nordstrom
What Does the Death Card Mean in Tarot?
Craigslist Yard Sales In Murrells Inlet
Scholar Dollar Nmsu
Latest Posts
Article information

Author: Jamar Nader

Last Updated:

Views: 6063

Rating: 4.4 / 5 (75 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Jamar Nader

Birthday: 1995-02-28

Address: Apt. 536 6162 Reichel Greens, Port Zackaryside, CT 22682-9804

Phone: +9958384818317

Job: IT Representative

Hobby: Scrapbooking, Hiking, Hunting, Kite flying, Blacksmithing, Video gaming, Foraging

Introduction: My name is Jamar Nader, I am a fine, shiny, colorful, bright, nice, perfect, curious person who loves writing and wants to share my knowledge and understanding with you.