Jump to content
  • 0

Can i Request a Currency Exchanger?


Question

Posted

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 -

2 answers to this question

Recommended Posts

Posted


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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...