Subzero Posted August 4, 2016 Posted August 4, 2016 hello guys, i'm requesting script for coin to coinexample: 10 Gold - 10 Poring Coin 10 Gold - 10 TCG 10 Gold - 10 Berry Quote
0 Aureon Posted August 6, 2016 Posted August 6, 2016 How about this? prontera,152,183,4 script rAthena 100,{ switch(select("Poring Coin","TCG Card","Berry")){ case 1: if(countitem(671) >= 10) { // 10 Gold Coin to 10 Poring Coin getitem 7539,10; delitem 671,10; close; } else { callsub OnEnd; close; } case 2: if(countitem(671) >= 10) { // 10 Gold Coin to 10 TCG Card getitem 7227,10; delitem 671,10; close; } else { callsub OnEnd; close; } case 3: if(countitem(671) >= 10){ // 10 Gold Coin to 10 Yggdrasil Berry getitem 607,10; delitem 671,10; close; } else { callsub OnEnd; close; } } OnEnd: dispbottom "You don't have enough Gold Coin"; close; } Quote
0 Emistry Posted August 6, 2016 Posted August 6, 2016 something similar that I wrote 4 years ago o-o http://upaste.me/1d10278cd3db1e7 Quote
Question
Subzero
hello guys, i'm requesting script for coin to coin
example:
10 Gold - 10 Poring Coin
10 Gold - 10 TCG
10 Gold - 10 Berry
2 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.