Advertisement
M45T3Ryu

Square 09:Go ahead!

Feb 10th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. job_ko,17,48,0  script  Sight#ko_09 909,2,2,{
  2. mes "There are tiny letters on the sign.";
  3. next;
  4. mes "Please proceed.";
  5. next;
  6. mes "Location: 9";
  7. mes "Total LP: "+LPOINTS+"";
  8. mes "To roll the dice, you need to consume 1 LP.";
  9. next;
  10. switch(select("Roll the dice.")){
  11. set LPOINTS, LPOINTS-1;
  12. set .@dice, rand(1,6);
  13. mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
  14. mes "The dice came out as "+.@dice+".";
  15. mes "Press Close to move forward "+.@dice+" blocks.";
  16. close2;
  17. switch(.@dice){
  18. case 1:
  19. warp "job_ko",,;
  20. case 2:
  21. warp "job_ko",17,19;
  22. case 3:
  23. warp "job_ko",25,60;
  24. case 4:
  25. warp "job_ko",,;
  26. case 5:
  27. warp "job_ko",,;
  28. case 6:
  29. warp "job_ko",49,60;
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement