Skip to main content

How to Complete World Quest: Fertilizer Salesperson In Genshin Impact

With the release of patch version 2.1 in the action-RPG game Genshin ImpactmiHoYo as a developer now presents various new World Quests for players to complete. With the release of a new character, Sangonomiya Kokomi, and the Kokomi story quest on September 21, players now have access to the World Quest.

In this article, Fajaryusufdotcom will provide tips on how to open and complete a World Quest entitled Fertilizer Salesperson, here is an explanation!

Tips on How to Unlock World Quest: Fertilizer Salesperson

To unlock the Fertilizer Salesperson quest, players must complete the World Quest entitled In Another Land and must complete the first part of the Kokomi Dracaena Somnolenta Champer Act 1: Warriors’ Dreams Like Spring Grass Renewing story quest first. After the player completes the mission, the player can port to Bourou Village on Watatsumi Island and talk to Iwata.

Tips on How to Complete the World Quest Fertilizer Salesperson

In order to complete the dialogue- heavy World Quest: Fertilizer Salesperson, players must help Iwata find the perfect fertilizer to grow her crops. Iwata was unable to travel to Ritou and therefore asked the players to bring the fertilizer needed to grow more crops in the village.

Iwata describes a salesman who hails from Sumeru and makes fertilizer that has mystical powers due to his ability to grow plants that produce tons of fruit.

The character who will help the player in this mission is Vahid. Unable to make his own fertilizer, Iwata enlists the help of travelers by overseeing the entire process. All players have to do is change the time using the in-game clock and set it to the next morning.

After doing so, players will find that Iwata is being attacked by a group of Electro Slimes and Cryos. Defeat the Slimes to start your relationship with Iwata, and find out about the progress made regarding fertilizers.

Fertilizer Salesperson Genshin Impact

  1. Talk to Iwata
  2. Come back the next day, and talk to Iwata (adjust the in-game time)
  3. Defeat the Slimes surrounding Iwata
  4. Talk to Iwata
  5. Accompanying Gorou in his investigation
  6. Go to Kaushik, which is located under Mouun Temple (south side), under a tree.
  7. Back to Gorou with Kaushik
  8. Go to Iwata, which is above Bourou Village to complete the quest

World Quest Reward: Fertilizer Salesperson

After the player completes the quest, the player will get various prizes, with the following details:

  • 100x Adventure EXP
  • 20 thousand Mora
  • 5x Hero’s Wit
  • 20x Inazuma Reputation Level

===

Read more articles related to other mobile games on the FajarYusuf.Com mobile game information website.
Follow Facebook Fanpages and also FajarYusuf.Com Google News so you don’t miss the latest information!

Comments

Popular posts from this blog

Contoh Program C++ : Konversi Bilangan Hexadesimal, Oktal , Biner.

Hai Pembaca FajarYusuf.Com yang pintar dan berwawasan tinggi, kali ini FajarYusuf.Com akan post Contoh Program C++ : Konversi Bilangan Hexadesimal, Oktal , Biner . Mari kita membuat program konversi bilangan yang sangat mudah di buat dengan menggunakan bahasa pemrograman C++. Yaitu dengan menggunakan type data long, untuk Hexadesimal dengan rumus : <<hex<<desimal (merubah dari bilangan Desimal ke Hexadesimal) , untuk Oktal dengan rumus : <<oct<<desimal (merubah dari bilangan Desimal ke Oktal). Dan untuk biner dilakukan pembagian 2. Contoh Coding Program C++ Konversi Bilangan: #include<iostream> using namespace std; int main() { long desimal, pembagi=1073741824, bit; cout<<"Nilai Desimal : "; cin>>desimal; cout<<"Hexadesimal = "<<hex<<desimal<<endl; cout<<"Oktal = "<<oct<<desimal<<endl; ...

Menambahkan Peraturan Komentar Pada Blog

Menambahkan Peraturan Komentar Pada Blog : Ngblog Menulis sebuah artikel dan dikomentari dengan link aktif/promosi produk dan kata kata spam lainnya memang tidak mengenakan anda mungkin akan sangat merasa kecewa sekali, anda mungkin seperti menulis sebuah artikel namun tidak dihargai karyanya oleh orang lain. Mungkin membuat aturan berkomentar di blog adalah salah 1 cara menetralisirnya, mungkin jika ada aturan tersebut orang berpikir 2 kali untuk meninggalkan komentar Spam, lalu bagaimana cara membuat aturan komentar tersebut? langsung saja kita praktekan Ikuti langkah berikut : Login ke bloger,masuk ke blog yang anda inginkan, Klik Setelan -> POS-KOMENTAR   Scroll kebawah dan cari menu "pesan formulir komentar" klik tambahkan , dan isi kolom sesuai keinginan kalian atau peraturan yang kalian inginkan.  Setelah selesai silakan klik simpan setelan dipojok kanan atas. Lihat hasilnya di blog kalian ,akan seperti ini : Jika ada pertanyaan...

Mengenal Struktur Pada Bahasa Pemrograman C++

Hai Pembaca FajarYusuf.Com yang pintar dan berwawasan tinggi, kali ini FajarYusuf.Com akan post  Mengenal Struktur Pada Bahasa Pemrograman C++ . Secara umum, struktur bahasa pemrograman C++ umumnya adalah seperti dibawah ini : // contoh program C++ #include <iostream> using namespace std; int main () { cout << "Selamat Belajar C++ di fajaryusuf.com"; return 0; } Hasil output: Klik gambar untuk memperbesar Sisi atas merupakan source code, dan sisi bawah adalah hasilnya setelah dilakukan compile dan di eksekusi. persatu Program diatas merupakan salah satu program paling sederhana dalam C++, tetapi dalam program tersebut mengandung komponen dasar yang selalu ada pada setiap pemrograman C++. Jika dilihat satu : // contoh program C++ Baris ini adalah komentar. semua baris yang diawali dengan dua garis miring (//) akan dianggap sebagai komentar dan tidak akan berpengaruh terhadap program. Dapat digunakan oleh programmer ...