DanialFX Posted March 8, 2014 Posted March 8, 2014 Need 300 pcs oridicon or elunium to make enriched and only have 10% success rate to make it Quote
Lelouch vi Britannia Posted March 8, 2014 Posted March 8, 2014 Try this map,x,y,loc<TAB>script<TAB>Enriched Ore Crafter<TAB>826,{ switch(select("Make Enriched Oridecon:Make Enriched Elunium:Nevermind")) { case 1: mes "I will need 300pcs of Oridecon."; next; if(countitem(984) >= 300) { set @rand,rand(1,100); if(@rand <= 10) { delitem 984,300; getitem 7620,1; mes "Congrats you just made a Enriched Oridecon."; emotion 21; close; } else { delitem 984,300; mes "Sorry! Failed to make item."; emotion 23; close; } } mes "You do not have enough Oridecon."; close; case 2: mes "I will need 300pcs of Elunium."; next; if(countitem(985) >= 300) { set @rand,rand(1,100); if(@rand <= 10) { delitem 985,300; getitem 7619,1; mes "Congrats you just made a Enriched Elunium."; emotion 21; close; } else { delitem 985,300; mes "Sorry! Failed to make item."; emotion 23; close; } } mes "You do not have enough Elunium."; close; case 3: close; } } 1 Quote
1 CursorX Posted March 8, 2014 Posted March 8, 2014 https://github.com/rathena/rathena/blob/master/npc/merchants/advanced_refiner.txt Quote
DanialFX Posted March 14, 2014 Author Posted March 14, 2014 (edited) Exactly! Thank you Edited March 14, 2014 by DanialFX Quote
Question
DanialFX
Need 300 pcs oridicon or elunium to make enriched and only have 10% success rate to make it
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.