Advertisement
Lelouch17

TCG to Zeny

Aug 26th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. prontera,100,100,5 script Trader 1002,{
  2. switch(select("TCG to Zeny:Zeny to TCG")) {
  3. case 1:
  4. mes "I will need 1x TCG for 20 Million Zeny.";
  5. if(countitem(7227) >= 1) {
  6. delitem 7227,1;
  7. set Zeny,zeny+20000000;
  8. close;
  9. }
  10. mes "You do not have enough TCG.";
  11. close;
  12.  
  13. case 2:
  14. mes "I will need 20 Million Zeny for 1x TCG.";
  15. if(Zeny > 20000000) {
  16. set Zeny,zeny-20000000;
  17. getitem 7227,1;
  18. close;
  19. }
  20. mes "You do not have enough Zeny.";
  21. close;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement