Advertisement
skiddo

Untitled

Feb 7th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. ra_temsky,60,135,3 script Converter 83,{
  2.  
  3. mes "[Converter]";
  4. mes "what can I do for you?";
  5. Goto L_cash;
  6.  
  7. L_cash:
  8. next;
  9. mes "[Converter]";
  10. mes "Here the rates about the exchange:";
  11. mes "^FF33552 Cash^000000 - ^FF33551 Sacred Token^000000";
  12. mes "^FF33551 Sacred Token^000000 - ^FF33552 Cash^000000";
  13. mes "Tell me, what choice do you take?";
  14. next;
  15. menu "^FF33552 Cash^000000 - ^FF33551 Sacred Token^000000",M_10cash,"^FF33551 Sacred Token^000000 - ^FF33552 Cash^000000",M_1coin,"No ^FF3355Thanks^000000",L_No;
  16.  
  17. M_10cash:
  18. next;
  19. mes "[Converter]";
  20. mes "Please wait a minute";
  21. if (#CASHPOINTS < 1) goto L_no;
  22. set #CASHPOINTS,(#CASHPOINTS - 2);
  23. getitem 20291,1;
  24. goto L_thanks;
  25.  
  26. M_1coin:
  27. next;
  28. mes "[Converter]";
  29. mes "Please wait a minute";
  30. if (countitem(20291) < 1) goto L_no;
  31. set #CASHPOINTS,#CASHPOINTS + 2;
  32. delitem 20291,1;
  33. goto L_thanks;
  34.  
  35. L_Thanks:
  36. mes "[Converter]";
  37. mes "Pleasure doing business with you.";
  38. close;
  39.  
  40. L_No:
  41. mes "[Converter]";
  42. mes "Okay~ Bye!";
  43. close;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement