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; }