Subzero Posted August 4, 2016 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 60 Reputation: 0 Joined: 07/25/16 Last Seen: August 5, 2021 Share 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 Link to comment Share on other sites More sharing options...
0 Aureon Posted August 6, 2016 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 281 Reputation: 14 Joined: 10/14/13 Last Seen: October 9, 2017 Share 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 Link to comment Share on other sites More sharing options...
0 Emistry Posted August 6, 2016 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Yesterday at 05:27 AM Share Posted August 6, 2016 something similar that I wrote 4 years ago o-o http://upaste.me/1d10278cd3db1e7 Quote Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.