Advertisement
M45T3Ryu

5th Square:Curse

Feb 10th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.62 KB | None | 0 0
  1. job_ko,17,16    script  Sight#ko_05 909,2,2,{
  2. mes "Other letters are too small to read. Let's look up close.";
  3. close;
  4.  
  5. OnUCurse:
  6. erasequest 5141;
  7. end;
  8.  
  9. OnTouch:
  10. if (checkquest(5141) == 1){
  11. mes "You are cursed and cannot move to any other block for 2 minutes.";
  12. close;
  13. }
  14. mes "There are tiny letters on the sign.";
  15. next;
  16. mes "If you do not pay 5 LP, you will be cursed and immobilized for 2 minutes.";
  17. next;
  18. switch(select("Use 5 LP:Do not pay.")){
  19. case 1:
  20. warp "",,;
  21. case 2:
  22. setquest 5141;
  23. addtimer 120000,strnpcinfo(3)+"::OnUCurse";
  24. mes "You are cursed and cannot move to any other block for 2 minutes.";
  25. close;
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement