Jump to content
  • 0

Req. Poring Coin -> TCG Card Exchanger


frozenfox

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  22
  • Reputation:   0
  • Joined:  06/14/12
  • Last Seen:  

hi rA :D

does anyone have that script? @_@.

so poring coin changed to TCG card (not zeny).

and support input number,

for example, i want to exchange 1234 poring coins, i just input 1234 and i've changed 1234 poring coins to 1234TCG cards.

(i hope you know what i mean).

Thanks before. :D

Edited by frozenfox
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

Please use the search function and search just for exchanger scripts and you'll find a lot of scripts here.

It'll be a script like this :

MAPNAME,XXX,YYY,Z<tab>script<tab>Exchanger<tab>NID,{
set .@n$,"^0000FF[ Exchanger ]^000000";
if(countitem(7539) >0) {
mes .@n$;
mes "Hi,how many Poring Coins do you want to exchange into TCG Cards?";
input @amount;
if(@amount<1) { close; }
if(countitem(7539) < @amount) {
mes "Failed to exchange!";
close;
}
mes "Successfully exchanged Poring Coins into TCG Cards!";
delitem 7539,@amount;
getitem 7227,@amount;
close;
}
mes .@n$;
mes "Sorry,but you need to carry Poring Coins with you,to use my Service~!";
close;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  22
  • Reputation:   0
  • Joined:  06/14/12
  • Last Seen:  

Please use the search function and search just for exchanger scripts and you'll find a lot of scripts here.

It'll be a script like this :

MAPNAME,XXX,YYY,Z<tab>script<tab>Exchanger<tab>NID,{
set .@n$,"^0000FF[ Exchanger ]^000000";
if(countitem(7539) >0) {
mes .@n$;
mes "Hi,how many Poring Coins do you want to exchange into TCG Cards?";
input @amount;
if(@amount<1) { close; }
if(countitem(7539) < @amount) {
mes "Failed to exchange!";
close;
}
mes "Successfully exchanged Poring Coins into TCG Cards!";
delitem 7539,@amount;
getitem 7227,@amount;
close;
}
mes .@n$;
mes "Sorry,but you need to carry Poring Coins with you,to use my Service~!";
close;
}

ah sorry @_@.

i already search but i always found coin to zeny xD.

thanks btw. you rock bro!! :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

No Problem.

~Done

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   0
  • Joined:  05/15/12
  • Last Seen:  

Hi, can you please edit it for me to look like this ->

10 Poring Coins = 1 TCG

20 Poring Coins = 2 TCG and so on ..

Thank you!

Help please :/

Edited by Zelek
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

MAPNAME,XXX,YYY,Z<tab>script<tab>Exchanger<tab>NID,{
set .@n$,"^0000FF[ Exchanger ]^000000";
if(countitem(7539) >0) {
mes .@n$;
mes "Hi,how many Poring Coins do you want to exchange into TCG Cards?";
mes "Remember : 10 Poring Coins are worth 1 TCG Card!";
input @amount;
if(@amount<1) { close; }
if(countitem(7539) < (@amount * 10) ) {
mes "Failed to exchange!";
close;
}
mes "Successfully exchanged"+(@amount*10)+" Poring Coins into "+@amount+" TCG Cards!";
delitem 7539,(@amount*10);
getitem 7227,@amount;
close;
}
mes .@n$;
mes "Sorry,but you have to carry Poring Coins with you,to use my Service~!";
close;
}

Have fun!

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...