[General Gameplay] Can you get Strange and Beautiful Rice Seed form Magical Rice Seed | Black Desert NA/EU (2025)

  • 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] Can you get Strange and Beautiful Rice Seed form Magical Rice Seed | 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 }); }

Can you get Strange and Beautiful Rice Seed form Magical Rice Seed

Jul 29, 2024, 02:57 (UTC)

1437 4 4 4

Last Edit : Jul 29, 2024, 08:02 (UTC)

# 2

Hi, if you check https://bdocodex.com/us/item/820321/ and click on the "Farming Product" tab, you can see the different seeds that can yield it as a result.

Minarya

10 1975

Lv 66

Minarya

Last Edit : Jul 31, 2024, 10:26 (UTC)

# 3

On: Jul 29, 2024, 02:57 (UTC), Written by Amiee

Can you get Strange and Beautiful Rice Seed form Magical Rice Seed or does it only come from Special Rice Seed?

I checked out the above posters link, the answer is yes. If you don't wanna go through it.

howwas

1 61

Lv 19

Spirituality

Last Edit : Jul 31, 2024, 11:19 (UTC)

# 4

Teach a man to fish and all that :D

Minarya

10 1975

Lv 66

Minarya

Reply

Submit Reply

General Gameplay

All discussion related to BDO Gameplay.

Start New Topic

[General Gameplay] Can you get Strange and Beautiful Rice Seed form Magical Rice Seed | Black Desert NA/EU (2025)

FAQs

What can you do with mysterious seeds? ›

Mysterious Seeds are a type of seed. They can be merged into Grass Tufts or grow into ones over time.

What are magical seeds for? ›

Magical Seeds are consumed and provide specific boosts when the holder enters a Magical Field Effect. The different boosts are: Dark Crystal Cavern: boosts Special Defense and applies Magic Coat to the user. Rainbow Field: raises Special Attack and applies Healing Wish to the user.

How to get magical seeds in BDO? ›

Once you reach Artisan 1 in farming, you can start to plant Magical Seeds for profit. These are the highest grade of seeds, and can be obtained by breeding Speical (blue) grade seeds. Once a seed has been placed it will begin to grow. Exit the installation screen by pressing Esc and clicking yes.

How to plant seeds in BDO Xbox? ›

Planting seeds is similar to installing furniture in a house. At the top left corner of the screen, you will see the available slots for planting. Select a seed from the window to the right and then click the area of the garden you want it planted in.

What do you get from Rare Seed? ›

The Rare Seed is a type of seed. A mature plant yields a Sweet Gem Berry. 600–1,000g each.

What can I do with Ancient Seed artifact? ›

The only productive use of the first Ancient Seed artifact found is to donate it to the Museum. The item contributes to the total count of Museum donations. Gunther will reward the player with one pack of plantable Ancient Seeds and the recipe to craft any further Ancient Seed artifacts into more seeds.

How do you get magical pumpkin seeds? ›

The Magical Pumpkin Seed summons a pet Squashling. It is obtained from harvesting fully-grown Pumpkins during Halloween, which has a 1/200 (0.5%) chance to drop a Magical Pumpkin Seed. When the player jumps high enough or outruns the Squashling, it will twirl and fly after the player.

What is the max fence in BDO? ›

A player may have a maximum of 10 fences installed in the world at any one time.

How do you get the rainbow gem fruit in BDO? ›

[Rainbow Jewel Fruit] can be purchased from the Livestock Vendor for 100,000,000 silver.

How to get unknown seeds in BDO? ›

Unknown seeds are gained from alchemy as a byproduct and can be crafted with truffle mushrooms to make hyphas.

How do I plant a seed card? ›

1) Soak the Seed Paper in a bit of water for about 1 to 2 hours. 2) Cut it up and carefully place it in a pot filled with soil. 3) Cover it with 5mm of soil, put it in the sun and water it every day without letting it dry out.

What do you do with the seeds in Zelda? ›

The 900 Korok Seeds in Zelda: Breath of the Wild are found around Hyrule by performing specific actions in certain locations. If you collect enough seeds, you can trade Korok Seeds with Hestu for increased inventory space for weapons, shields, and bows.

What else can you do with seeds in Minecraft? ›

Like other seeds, wheat seeds can be used to breed chickens and reduce the remaining growth duration of baby chickens by 10%. Chickens also follow a player holding wheat seeds.

What can you do with mystery seeds in Finn and Bones? ›

Mystery Seeds are a mid-game food item. It is almost solely used by crafting it with water to make strawberries. By itself, it can also hold up to 50 Health.

What do you do with seeds in farming simulator? ›

You need to buy a bigbag of seeds at the dealership and fill your seeder with it. You just have to position your sowing machine right beside the seeds and press the "refill" button - the seeds will automatically load into the seeder.

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5593

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.