Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- job_ko,33,16 script Sight#ko_03 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 "Used 5 LP so you will have to resist the curse passed down through generations before moving forward.";
- next;
- switch(select("Use 5 LP")){
- case 1:
- mes "< Used 5 LP >";
- set LPOINTS, LPOINTS-5;
- mes "You can roll the dice now.";
- next;
- mes "Location: 0";
- mes "Total LP: "+LPOINTS+"";
- mes "To roll the dice, you need to consume 1 LP.";
- next;
- switch(select("Roll the dice.")){
- set LPOINTS, LPOINTS-1;
- set .@dice, rand(1,6);
- mes ""+strcharinfo(0)+" *Dice#"+.@dice+"*";
- mes "The dice came out as "+.@dice+".";
- mes "Press Close to move forward "+.@dice+" blocks.";
- close2;
- switch(.@dice){
- case 1:
- warp "job_ko",30,16;
- case 2:
- warp "job_ko",,;
- case 3:
- warp "job_ko",,;
- case 4:
- warp "job_ko",,;
- case 5:
- warp "job_ko",22,16;
- case 6:
- warp "job_ko",17,19;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement