Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. prontera,143,179,5 script Galaxy Warper 651,{
  2.  
  3. mes @npc$;
  4.  
  5. mes "The Guardians have been awakened !";
  6. mes "We need your help to constrain them !";
  7. switch(select("I will lend you my strength!:No! I'm too scared..")) {
  8. case 1:
  9. if (countitem(.@item) < .@amount) {
  10. mes "You don't have the required items!";
  11. close;
  12. }
  13. delitem .@item,.@amount;
  14. warp "thana_boss",135,129;
  15. end;
  16. case 2:
  17. mes "Bye.";
  18. close;
  19. }
  20. OnInit:
  21. set @npc$,"[Galactica]";
  22. set .@item,674;
  23. set .@amount,5;
  24. end;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement