Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- job_ko,33,23,0 script Sight#ko_24 909,2,2,{
- mes "Other letters are too small to read. Let's look up close.";
- close;
- OnTouch:
- mes "There are tiny letters on the sign.";
- next;
- mes "consume 2 LP and roll the dice twice.";
- next;
- mes "If the sum of the numbers from both dice is larger than 8, then you can move to any block between 25 to 30. But! If the sum is below 8, you must move back to block 19.";
- next;
- mes "Location: 24";
- mes "Total LP: "+LPOINTS+"";
- mes "To roll the dice, you need to consume 2 LP.";
- next;
- switch(select("Roll the first dice.")){
- < Used 2 LP >
- set .@dice1,rand(1,6);
- next;
- mes ""+strcharinfo(0)+" *Dice#"+.@dice1+"*";
- mes "First dice result is "+.@dice1+". Do you want to roll the second dice?";
- next;
- switch(select("Roll the second dice.")){
- set .@dice2,rand(1,6);
- mes ""+strcharinfo(0)+" *Dice#"+.@dice2+"*";
- mes "Second dice result is "+.@dice2+".";
- next;
- set .@dresult,.@dice1+.@dice2;
- "+.@dice1+" + "+.@dice2+" = "+.@dresult+"
- if (.@dresult<8){
- mes "You total is lower than 8. Press Close to move to block 19.";
- close2;
- warp "job_ko",,;} else
- mes "You total is larger than 8. Please choose a block to move to between blocks 25 through 30.";
- next;
- switch(select("Move to block 25.:Move to block 26.:Move to block 27.:Move to block 28.:Move to block 29.:Move to block 30.")){
- case 1:
- warp "job_ko",30,23;
- case 2:
- warp "job_ko",,;
- case 3:
- warp "job_ko",,;
- case 4:
- warp "job_ko",,;
- case 5:
- warp "job_ko",,;
- case 6:
- warp "job_ko",,;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement