Advertisement
akbare

Costume Exchanger

Aug 5th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. prontera,106,93,6 script Costume Exchanger 49,{
  2. mes "[ Costume Exchanger ]";
  3. mes "Hello there!";
  4. mes "I can help you exchange your item into a costume by chance";
  5. mes "Do you want to continue?";
  6. next;
  7. switch(select("Costume Exchange:Maybe next time.")) {
  8. case 1:
  9. if((countitem(5389)>=1) && (Zeny > 999999)) {
  10. progressbar "ffff00",7;
  11. delitem 5389,1;
  12. set Zeny, Zeny-1000000;
  13. mes "[ Costume Exchanger ]";
  14. if(rand(100) < 50) {
  15. mes "Here you are!";
  16. getitem 20146,1;
  17. close;
  18. }
  19. }
  20.  
  21. case 2:
  22. mes "[ Costume Exchanger ]";
  23. mes "Come and see me again!";
  24. close;
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement