Yoona Posted June 1, 2013 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 567 Reputation: 18 Joined: 04/15/13 Last Seen: April 21, 2016 Share Posted June 1, 2013 A NPC that can change Gold for TCG - then they can choose its either 1k of Gold = 1000 TCG or the 3000 Gold = 2000 TCG Example: - 1000 Gold Coin = 1000 TCG - 2000 Gold Coin = 1500 TCG - 3000 Gold Coin = 2000 TCG - More Blessing rAthena and Thank you in Advance - Quote Link to comment Share on other sites More sharing options...
Jaburak Posted June 1, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted June 1, 2013 prontera.gat,150,150,5 script Test 899,{ mes "Do you want to trade your Gold Coin to TCG??"; menu "Yes!",-,"No!",Lno; mes "[Credits Exchanger]"; mes "How many Gold Coin do you want to exchange?"; next; menu "1000 Gold Coin",L1000, "2000 Gold Coin",L2000, "3000 Gold Coin",L3000, "Quit",Lcancel; Lcancel: close; Lno: close; L1000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 1000) goto Lcantmake; delitem 671,1000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,1000; close; L2000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 2000) goto Lcantmake; delitem 671,2000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,1500; close; L3000: mes "This is equal to ^0088001000 TCG^000000 :"; next; if(countitem(671) < 3000) goto Lcantmake; delitem 671,3000; mes "Checking..."; next; mes "Thanks a lot!"; getitem 7227,2000; close; Lcantmake: mes "You need more Gold Coins"; close; } 1 Quote Link to comment Share on other sites More sharing options...
Yoona Posted June 1, 2013 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 567 Reputation: 18 Joined: 04/15/13 Last Seen: April 21, 2016 Author Share Posted June 1, 2013 @Anakid Thank you so much <3 Quote Link to comment Share on other sites More sharing options...
Question
Yoona
A NPC that can change Gold for TCG
- then they can choose its either 1k of Gold = 1000 TCG or the 3000 Gold = 2000 TCG
Example:
- 1000 Gold Coin = 1000 TCG
- 2000 Gold Coin = 1500 TCG
- 3000 Gold Coin = 2000 TCG
- More Blessing rAthena and Thank you in Advance -
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.