Advertisement
Guest User

eidt

a guest
Aug 4th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. market,92,119,4 script Cash Trader 70,{
  2. mes "[Cash Trader]";
  3. mes "I can exchange ^5500ff Poring Coins to Cash Points^000000.";
  4. mes "Cash Points can be spent in the Cash Shop in exchange for items.";
  5. dispbottom "Current Cash Points: " + #CASHPOINTS;
  6. next;
  7.  
  8. L_MEN:
  9. mes "[Cash Trader]";
  10. mes "Do you want to trade your ^5500ff Poring Coins to Cash Points?^000000";
  11. next;
  12. menu "Yes.",-,"What can I buy with Cash Points?",L_INF,"Not right now.",L_OUT;
  13.  
  14. mes "[Cash Trader]";
  15. mes "The exchange rate is^5500ff 1 Poring Coin^000000 = ^00aa001 Cash Point^000000.";
  16. mes "How many Coupon do you want to exchange? Input 0 to cancel.";
  17. next;
  18. input @coinschange;
  19. if(@coinschange == 0) goto L_OUT;
  20.  
  21. //==========================================================================================
  22. // If you want to change the item ID of the Gold Coin, edit here. (Current ID is 671)
  23. //==========================================================================================
  24. if(countitem(7539) < @coinschange) goto L_NOTENOUGH;
  25. delitem 7539,@coinschange;
  26. //==========================================================================================
  27. // If you want to change the echange rate, edit here. (Current rate is 1 Coin = 500 Cash)
  28. // If you DO change the rate, don't forget to change the dialogue too!
  29. //==========================================================================================
  30. set @pointsget,@coinschange * 1;
  31. set #CASHPOINTS,#CASHPOINTS+@pointsget;
  32.  
  33. mes "[Cash Trader]";
  34. mes "The exchange was successfull. You can now purchase items at the Cash Shop.";
  35. dispbottom "Gained Cash Points. Current Cash Points: " + #CASHPOINTS;
  36. close;
  37.  
  38. L_INF:
  39. mes "[Cash Trader]";
  40. mes "Cash Points can be used to buy rare items at the Cash Shop.";
  41. mes "If you want to check what items are available, talk to the Cash Shop NPC.";
  42. next;
  43. goto L_MEN;
  44.  
  45. L_NOTENOUGH:
  46. mes "[Cash Trader]";
  47. mes "You do not have enough Poring Coins.";
  48. close;
  49.  
  50. L_OUT:
  51. mes "[Cash Trader]";
  52. mes "Come back when you have Poring Coins to exchange.";
  53. close;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement