Advertisement
M45T3Ryu

Square 01:Pay and GO to 9!

Feb 10th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.04 KB | None | 0 0
  1. job_ko,49,16,0  script  Sight#ko_01 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 "You are really bad at rolling dice. How can you get a 1 from the start? You can move to block 9 if you pay up 10 LP in this block.";
  9. next;
  10. switch(select("Use 10 LP:Roll the dice."))
  11. case 1:
  12. set LPOINTS, LPOINTS-10;
  13. mes "< Used 10 LP >";
  14. mes "Press Close to move to block 9.";
  15. close2;
  16. warp "job_ko",17,43;
  17. case 2:
  18. mes "Roll the dice.";
  19. next;
  20. mes "Location: 1";
  21. mes "Total LP: "+LPOINTS+"";
  22. mes "To roll the dice, you need to consume 1 LP.";
  23. next;
  24. switch(select("Roll the dice.")){
  25. set LPOINTS, LPOINTS-1;
  26. set .@dice, rand(1,6);
  27. mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
  28. mes "The dice came out as "+.@dice+".";
  29. mes "Press Close to move forward "+.@dice+" blocks.";
  30. close2;
  31. switch(.@dice){
  32. case 1:
  33. warp "job_ko",,;
  34. case 2:
  35. warp "job_ko",,;
  36. case 3:
  37. warp "job_ko",,;
  38. case 4:
  39. warp "job_ko",,;
  40. case 5:
  41. warp "job_ko",,;
  42. case 6:
  43. warp "job_ko",17,27;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement