Advertisement
Lelouch17

Trader Ygg

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