Advertisement
M45T3Ryu

3rd Square:Need 5

Feb 10th, 2013
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.95 KB | None | 0 0
  1. job_ko,33,16    script  Sight#ko_03 909,2,2,{
  2. mes "Other letters are too small to read. Let's look up close.";
  3. close;
  4.  
  5. OnTouch:
  6. mes "There are tiny letters on the sign.";
  7. next;
  8. mes "Used 5 LP so you will have to resist the curse passed down through generations before moving forward.";
  9. next;
  10. switch(select("Use 5 LP")){
  11. case 1:
  12. mes "< Used 5 LP >";
  13. set LPOINTS, LPOINTS-5;
  14. mes "You can roll the dice now.";
  15. next;
  16. mes "Location: 0";
  17. mes "Total LP: "+LPOINTS+"";
  18. mes "To roll the dice, you need to consume 1 LP.";
  19. next;
  20. switch(select("Roll the dice.")){
  21. set LPOINTS, LPOINTS-1;
  22. set .@dice, rand(1,6);
  23. mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
  24. mes "The dice came out as "+.@dice+".";
  25. mes "Press Close to move forward "+.@dice+" blocks.";
  26. close2;
  27. switch(.@dice){
  28. case 1:
  29. warp "job_ko",30,16;
  30. case 2:
  31. warp "job_ko",,;
  32. case 3:
  33. warp "job_ko",,;
  34. case 4:
  35. warp "job_ko",,;
  36. case 5:
  37. warp "job_ko",22,16;
  38. case 6:
  39. warp "job_ko",17,19;
  40. }
  41. }
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement