Guest User

Untitled

a guest
Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. ice_dun03,158,289,1 script Kellasus 924,{
  2. mes "[Kellasus]";
  3. mes "Hey, I'm freezing in here.";
  4. mes "Would you like to help me with something?";
  5. menu "Of course",L_Yes,"Nope, I'm busy with something",L_Close,;
  6.  
  7. L_Yes:
  8. mes "[Kellasus]";
  9. mes "Ok here is the list";
  10. mes "100 Old Picks";
  11. mes "20 Ice Scales";
  12. mes "300 Glacial Hearts";
  13. mes "100 Frozen Roses";
  14. mes "10 Garm Baby Cards";
  15. mes "and 5,000,000z";
  16. mes "Come back when you have them";
  17. next;
  18. if(countitem(7318)<100 || countitem(7562)<20 || countitem(7561)<300 || countitem(749)<100
  19. || countitem(4323)<10 || Zeny<5000000) goto NoItems;
  20. delitem 999,120;
  21. delitem 984,10;
  22. delitem 996,10;
  23. delitem 994,10;
  24. delitem 995,10;
  25. delitem 997,10;
  26. set Zeny,Zeny-1000000;
  27. mes "[Kellasus]";
  28. mes "Thank you for helping me";
  29. mes "As my appreciation take this.";
  30. getitem 20023,1;
  31. close;
  32.  
  33. L_Close:
  34. mes "[Kellasus]";
  35. mes "Have a good day";
  36.  
  37. NoItems:
  38. mes "[Kellasus]";
  39. mes "Sorry you don't have all the items or zeny I need";
  40. mes "Come back when you have them all";
  41. close;
  42. }
Add Comment
Please, Sign In to add comment