Jump to content
  • 0

Can i Request a Currency Exchanger?


Yoona

Question


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.03
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  


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;

}

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.03
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

@Anakid Thank you so much <3

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...