Advertisement
M45T3Ryu

Square 04:Leave your name!

Feb 10th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.61 KB | None | 0 0
  1. job_ko,25,16,0  script  Sight#ko_04 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 scribbled on the sign.";
  7. next;
  8. mes ""+$whowashere$+" was here.";
  9. next;
  10. mes "Should I leave my name since taking the test is a special occasion?";
  11. next;
  12. switch(select("Use 5 LP and leave your name.:Continue to roll the dice.")){
  13. case 1:
  14. mes "< Used 5 LP >";
  15. next;
  16. set $whowashere$,"strcharinfo(0)";
  17. mes ""+strcharinfo(0)+" was here.";
  18. mes "You left your name. You can roll the dice now.";
  19. next;
  20. mes "Location: 0";
  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",17,19;
  36. case 3:
  37. warp "job_ko",,;
  38. case 4:
  39. warp "job_ko",17,35;
  40. case 5:
  41. warp "job_ko",,;
  42. case 6:
  43. warp "job_ko",,;
  44. }
  45. }
  46. case 2:
  47. mes "Location: 0";
  48. mes "Total LP: "+LPOINTS+"";
  49. mes "To roll the dice, you need to consume 1 LP.";
  50. next;
  51. switch(select("Roll the dice.")){
  52. set LPOINTS, LPOINTS-1;
  53. set .@dice, rand(1,6);
  54. mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
  55. mes "The dice came out as "+.@dice+".";
  56. mes "Press Close to move forward "+.@dice+" blocks.";
  57. close2;
  58. switch(.@dice){
  59. case 1:
  60. warp "job_ko",,;
  61. case 2:
  62. warp "job_ko",17,19;
  63. case 3:
  64. warp "job_ko",,;
  65. case 4:
  66. warp "job_ko",,;
  67. case 5:
  68. warp "job_ko",,;
  69. case 6:
  70. warp "job_ko",,;
  71. }
  72. }
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement