viewing paste Unknown #56536 | Text

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
FishingBoxStatus:
        mes "[ ^00007f"+strcharinfo(0)+": Fishing Box Status^000000 ]";
        mes "Fishing Box Status: [ ^ff5500"+FishingBoxOn+"^000000 ]";
        mes "If Status = 1 is ^ff0000[ ON ]^000000";
        mes "If Status = 2 is ^8a8a8a[ OFF ]^000000";
        //cutin $@FBManualSwitch$,3;
        next;
        menu "[ ^ff0000Set to ON^000000 ]",NowOn,"[ ^999999Set to Off^000000 ]",NowOff,"[ ^aaffffMain Menu^000000 ]",MainMenu;
        NowOn:
            mes "[ ^00007f"+strcharinfo(0)+": Fishing Box Status^000000 ]";
            set FishingBoxOn,1;
            mes "Fishing Box is now ^ff0000[ ON ]^000000";
            mes "Fishing Rewards is now stored in the box";
            //cutin $@FBON$,3;
            next;
            menu "[Return]",FishingBoxStatus;
            close;
        NowOff:
            mes "[ ^00007f"+strcharinfo(0)+": Fishing Box Status^000000 ]";
            set FishingBoxOn,0;
            mes "Fishing Box is now ^969696[ OFF ]^000000";
            mes "Fishing Rewards is now directly put in your inventory";
            //cutin $@FBOFF$,3;
            next;
            menu "[Return]",FishingBoxStatus;
            close;
return;
}
Viewed 1031 times, submitted by Guest.