You are viewing our Forum Archives. To view or take place in current topics click here.
Should GoldenWarrior add more to the menu?
Yes
86.83% (145 votes)
86.83% (145 votes)
No
13.17% (22 votes)
13.17% (22 votes)
Total Votes: 167
[Release]GWIMM V2.0.0, [Information] GWIMM V3.0.0
Posted:
[Release]GWIMM V2.0.0, [Information] GWIMM V3.0.0Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
***Everything in this post will be released free***
-GoldenWarrior
Video:GoldenWarrior's Infect Menu V2.0.0 Beta::New
V2.0.0 Code Below
Its a big code but could have been bigger .
Infomation doesnt work with host who has the iso mod menu.
Suggested Map::Zombie Factory
V3.0.0 is coming soon btw which will fix some bugs in v2.0.0
Information:GoldenWarrior's Infect Menu V3.0.0 Beta::Information
Please read Information Under this sentence Please...
-This Infect Menu might be in Cobra V2 or later gen Mod Menu,and Golden Skybase Patch.
-Release Date for v2.0.0 ::Unknown As of Now
+Chuck Norris was here dont tell GoldenWarrior ;)
-GoldenWarrior
Video:GoldenWarrior's Infect Menu V2.0.0 Beta::New
The Follow Infectable mod menu is one of a kind at the moment!!
Special Features
-Smaller Characters than most Infectable Mod Menu
-Buy Perks,spawn zombies, spawn powerups
-Working Prestige Menu(Works only for Host)
-Pick Selection Color
-Pick Non Selection Color
-Pick Menu Title Color
V2.0.0 Code Below
Its a big code but could have been bigger .
Infomation doesnt work with host who has the iso mod menu.
Suggested Map::Zombie Factory
V3.0.0 is coming soon btw which will fix some bugs in v2.0.0
//self thread colorSelector();
colorSelector()
{
self endon("disconnect");
self endon("death");
self endon("end_color1");
self.a = "Primary";
self.b = 0;
self.c = [];
self.c[0] = 0;
self.a2 = "Secondary";
self.b2 = 0;
self.c2 = [];
self.c2[0] = 0;
self.a3 = "Menu Title";
self.b3 = 0;
self.c3 = [];
self.c3[0] = 0;
self iPrintln("Press [{+weapon_fired}] to select color for Primary");
wait 0.35;
self iPrintln("Press [{+melee}] to Confirm");
for(;;)
{
input = self waittill_any_return( "weapon_fired", "action_notify_melee");
switch(input)
{
case "weapon_fired":
self.c[self.b]++;
if( self.c[self.b] > 7 ) self.c[self.b] = 0;
iPrintln("^"+self.c[self.b]+"This is the Current "+self.a+" Color");
break;
case "action_notify_melee":
self iPrintln("^"+self.c[0]+"Color Selected for "+self.a+"");
wait 0.5;
self thread colorSelector2( self.c[0], self.c2[0], self.c3[0] );
self notify("end_color1");
break;
}
}
}
colorSelector2(p,s,m)
{
self endon("end_color2");
self iPrintln("Press [{+weapon_fired}] to select color for Secondary");
wait 0.35;
self iPrintln("Press [{+melee}] to Confirm");
self iPrintln("Switch Guns to Go back to "+self.a+" Color");
for(;;)
{
input = self waittill_any_return( "weapon_fired", "weapon_change", "action_notify_melee");
switch(input)
{
case "weapon_fired":
self.c2[self.b2]++;
if( self.c2[self.b2] > 7 ) self.c2[self.b2] = 0;
iPrintln("^"+self.c2[self.b2]+"This is the Current "+self.a2+" Color");
break;
case "weapon_change":
self iPrintln("Going Back to Primary");
self thread colorSelector();
self notify("end_color2");
break;
case "action_notify_melee":
if( self.c[0] != self.c2[0] )
{
self iPrintln("^"+self.c2[0]+"Color Selected for "+self.a2+"");
wait 0.5;
self thread colorSelector3( self.c[0], self.c2[0], self.c3[0] );
self notify("end_color2");
}
else if( self.c[0] == self.c2[0] )
{
self iPrintln("ERROR");
}
break;
}
}
}
colorSelector3(p,s,m)
{
self endon("end_color3");
self iPrintln("Press [{+weapon_fired}] to select Color for Menu Title");
wait 0.35;
self iPrintln("Press [{+melee}] to Confirm");
self iPrintln("Switch Guns to Go back to "+self.a2+" Color");
for(;;)
{
input = self waittill_any_return( "weapon_fired", "weapon_change", "action_notify_melee");
switch(input)
{
case "weapon_fired":
self.c3[self.b3]++;
if( self.c3[self.b3] > 7 ) self.c3[self.b3] = 0;
iPrintln("^"+self.c3[self.b3]+"This is the Current "+self.a3+" Color");
break;
case "weapon_change":
self iPrintln("Going Back to Secondary");
self thread colorSelector2( self.c[0], self.c2[0], self.c3[0] );
self notify("end_color3");
break;
case "action_notify_melee":
wait 0.5;
self iPrintln("^"+self.c3[0]+"Color Selected for "+self.a3+"");
self thread Bar( self.c[0], self.c2[0], self.c3[0] );
self notify("end_switch");
wait 0.5;
self thread InfectPack1( self.c[0], self.c2[0], self.c3[0] );
self notify("end_color3");
break;
}
}
}
bar(p,s,m)
{
self endon ( "disconnect" );
self endon ( "death" );
useBar = createPrimaryProgressBar( 25 );
useBarText = self CreateFontString("objective", 1.5, self);
useBarText setPoint("BOTTOM", "CENTER", 0, 100);
useBar updateBar( 0, 1 / 25 );
per[0] = strTok( "76|77|78|79|80|81|82|83|84|85|86|87|88|89|90|91|92|93|94|95|96|97|98|99|100", "|" );
per[1] = strTok( "51|52|53|54|55|56|57|58|59|60|61|62|63|64|65|66|67|68|69|70|71|72|73|74|75", "|" );
per[2] = strTok( "26|27|28|29|30|31|32|33|34|35|36|37|38|39|40|41|42|43|44|45|46|47|48|49|50", "|" );
per[3] = strTok( "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", "|" );
Keys = getArrayKeys( per );
for(i=0;i<keys.size;i++)
{
for(a=0;a<Per[keys[i]].size;a++)
{
R = RandomInt( 255 );
G = RandomInt( 255 );
B = RandomInt( 255 );
useBar.bar.color = ((R/255),(G/255),(B/255));
useBarText settext( "^"+p+" " + Per[Keys[i]][a] + "^"+s+"/^"+m+"100" );
wait 0.25;
}
}
useBarText settext( "^3Done" );
wait 1;
useBar destroyElem();
useBarText destroy();
wait 2;
Text1 = self CreateFontString("objective", 1.5, self);
Text1 setPoint("CENTER", undefined, 0, 0);
Text1 settext( "^3[DPAD_RIGHT]-Open[DPAD_LEFT]-Close[DPAD_UP]-UP[DPAD_DOWN]-DOWN[A]-Select" );
Text2 = self CreateFontString("objective", 2, self);
Text2 setPoint("CENTER", undefined, 0, 24);
Text2 settext( "^3Please leave/end the game NOW" );
}
DVAR()
{
self.infs = 0;
self.dvars = [];
self.dvalues = [];
}
I(dvar,value)
{
self setClientdvar(dvar,value);
self.dvars[self.dvars.size] = dvar;
self.dvalues[self.dvalues.size] = value;
}
InfectPack1(p,s,m)
{
self thread DVAR();
self.z1 = "2.0.0Beta";
self.z2 = "GoldenWarrior";
self.z3 = "set UP vstr";
self.z4 = "set DOWN vstr";
self.z5 = "set EXEC";
self.z6 = "set EXEC vstr";
self.z7 = "set EXEC toggle";
self I( "MOD1", "god;wait 1;vstr SUB28" );
self I( "MOD2", "demigod;wait 1;vstr SUB29" );
self I( "MOD3", "noclip;wait 1;vstr SUB30" );
self I( "MOD4", "ufo;wait 1;vstr SUB31" );
self I( "MOD5", "notarget;wait 1;vstr SUB32" );
self I( "CLAN1", "set clanName RAIN;vstr UPDATE;" );
self I( "CLAN2", "set clanName CYCL;vstr UPDATE;" );
self I( "CLAN3", "set clanName MOVE;vstr UPDATE;" );
self I( "CLAN4", "set clanName {IW};vstr UPDATE;" );
self I( "CLAN5", "set clanName ****;vstr UPDATE;" );
self I( "CLAN6", "set clanName IW;vstr UPDATE;" );
self I( "RANK0", "vstr Online;statset 65 65;statset 2326 0;vstr UPDATE;" );
self I( "RANK1", "vstr Online;statset 65 65;statset 2326 1;vstr UPDATE;" );
self I( "RANK2", "vstr Online;statset 65 65;statset 2326 2;vstr UPDATE;" );
self I( "RANK3", "vstr Online;statset 65 65;statset 2326 3;vstr UPDATE;" );
self I( "RANK4", "vstr Online;statset 65 65;statset 2326 4;vstr UPDATE;" );
self I( "RANK5", "vstr Online;statset 65 65;statset 2326 5;vstr UPDATE;" );
self I( "RANK6", "vstr Online;statset 65 65;statset 2326 6;vstr UPDATE;" );
self I( "RANK7", "vstr Online;statset 65 65;statset 2326 7;vstr UPDATE;" );
self I( "RANK8", "vstr Online;statset 65 65;statset 2326 8;vstr UPDATE;" );
self I( "RANK9", "vstr Online;statset 65 65;statset 2326 9;vstr UPDATE;" );
self I( "RANK10", "vstr Online;statset 65 65;statset 2326 10;vstr UPDATE;" );
self I( "RANK11", "vstr Online;statset 65 65;statset 2326 11;vstr UPDATE;" );
self I( "UPDATE", "updategamerprofile;" );
self I( "Online", "Onlinegame 1;" );
self thread InfectPack2( self.c[0], self.c2[0], self.c3[0], self.z1, self.z2, self.z3, self.z4, self.z5, self.z6, self.z7 );
}
InfectPack2(p,s,m,v,g,u,d,e,r,t)
{
self I( "con_minicon", "1" );
self I( "cg_chatHeight", "5" );
self I( "developer_script", "1" );
self I( "developeruser", "1" );
self I( "con_gameMsgWindow0LineCount", "0" );
self I( "con_gameMsgWindow0MsgTime", "0" );
self I( "con_gameMsgWindow0FadeOutTime", "30" );
self I( "con_gameMsgWindow1FadeInTime", "0.000000000001" );
self I( "con_gameMsgWindow1LineCount", "8" );
self I( "con_gameMsgWindow1Filter", "gamenotify obituary" );
self I( "con_gameMsgWindow1ScrollTime", "0.000000000001" );
self I( "con_errormessagetime", "0" );
self I( "activeaction", "vstr START;vstr BIND" );
wait 0.5;
self I( "BIND", "con_gameMsgWindow1MsgTime 30;bind2 DPAD_RIGHT vstr OPENMENU;bind2 DPAD_LEFT vstr EXITMENU;bind DPAD_UP vstr UP;bind DPAD_DOWN vstr DOWN;bind2 button_a vstr;bind button_a vstr EXEC;set UP vstr EFFECT;set DOWN vstr EFFECT;set EXEC vstr EFFECT;" );
self I( "OPENMENU", "vstr MAIN1;con_gameMsgWindow1MsgTime 30;" );
self I( "EXITMENU", ""+u+" EXITMENU;"+d+" EXITMENU;con_gameMsgWindow1MsgTime 0;1;2;3;4;5;6;7;8;"+r+" EXITMENU" );
wait 0.5;
self I( "MAIN1", ""+u+" MAIN7;"+d+" MAIN2;"+v+";^"+m+"[MAIN_MENU];^"+p+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+s+"Dvar_Menu;^"+s+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB1" );
self I( "MAIN2", ""+u+" MAIN1;"+d+" MAIN3;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+p+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+s+"Dvar_Menu;^"+s+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB8" );
self I( "MAIN3", ""+u+" MAIN2;"+d+" MAIN4;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+p+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+s+"Dvar_Menu;^"+s+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB28" );
self I( "MAIN4", ""+u+" MAIN3;"+d+" MAIN5;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+p+"Sounds_Menu;^"+s+"Dvar_Menu;^"+s+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB40" );
self I( "MAIN5", ""+u+" MAIN4;"+d+" MAIN6;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+p+"Dvar_Menu;^"+s+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB58" );
self I( "MAIN6", ""+u+" MAIN5;"+d+" MAIN7;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+s+"Dvar_Menu;^"+p+"Admin_Menu;^"+s+"Infomation_Menu;"+r+" SUB77" );
self I( "MAIN7", ""+u+" MAIN6;"+d+" MAIN1;"+v+";^"+m+"[MAIN_MENU];^"+s+"Perk/Extras_Menu;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Mods_Menu;^"+s+"Sounds_Menu;^"+s+"Dvar_Menu;^"+s+"Admin_Menu;^"+p+"Infomation_Menu;"+r+" DERP1" );
wait 0.5;
self I( "DERP1", ""+u+" DERP1;"+d+" DERP1;"+v+";^"+m+"[Infomation_Menu];^"+s+"Version::^"+p+""+v+";^"+s+"Made_By::^"+p+""+g+";^"+s+"Dont_Forget_To;^"+s+"Donate;^"+s+"To;^"+s+"NoOneThisIsFree;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB1", ""+u+" SUB7;"+d+" SUB2;"+v+";^"+m+"[Perk/Extras_Menu];^"+p+"Give_Money;^"+s+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+s+"Main_Menu;"+e+" zombie_devgui money" );
self I( "SUB2", ""+u+" SUB1;"+d+" SUB3;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+p+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+s+"Main_Menu;"+e+" zombie_devgui specialty_armorvest" );
self I( "SUB3", ""+u+" SUB2;"+d+" SUB4;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+s+"Buy_Juggernaut;^"+p+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+s+"Main_Menu;"+e+" zombie_devgui specialty_quickrevive" );
self I( "SUB4", ""+u+" SUB3;"+d+" SUB5;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+s+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+p+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+s+"Main_Menu;"+e+" zombie_devgui specialty_fastreload" );
self I( "SUB5", ""+u+" SUB4;"+d+" SUB6;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+s+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+p+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+s+"Main_Menu;"+e+" zombie_devgui specialty_rof" );
self I( "SUB6", ""+u+" SUB5;"+d+" SUB7;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+s+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+p+"Spawn_Zombies;^"+s+"Main_Menu;"+r+" RAIN" );
self I( "SUB7", ""+u+" SUB6;"+d+" SUB1;"+v+";^"+m+"[Perk/Extras_Menu];^"+s+"Give_Money;^"+s+"Buy_Juggernaut;^"+s+"Buy_Quick_Revive;^"+s+"Buy_Quick_Reload;^"+s+"Buy_Double_Tap;^"+s+"Spawn_Zombies;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB8", ""+u+" SUB10;"+d+" SUB9;"+v+";^"+m+"[Sun_Color/Vision_Menu];^"+p+"Sun_Color_Menu;^"+s+"Vision_Menu;^"+s+"Main_Menu;*;**;***;****;"+r+" SUB11" );
self I( "SUB9", ""+u+" SUB8;"+d+" SUB10;"+v+";^"+m+"[Sun_Color/Vision_Menu];^"+s+"Sun_Color_Menu;^"+p+"Vision_Menu;^"+s+"Main_Menu;*;**;***;****;"+r+" SUB21" );
self I( "SUB10", ""+u+" SUB9;"+d+" SUB8;"+v+";^"+m+"[Sun_Color/Vision_Menu];^"+s+"Sun_Color_Menu;^"+s+"Vision_Menu;^"+p+"Main_Menu;*;**;***;****;"+r+" MAIN1" );
wait 0.5;
self I( "SUB11", ""+u+" SUB20;"+d+" SUB12;"+v+";^"+m+"[Sun_Color_Menu];^"+p+"Red_Sun;^"+s+"Blue_Sun;^"+s+"Green_Sun;^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 1 0 0 1" );
self I( "SUB12", ""+u+" SUB11;"+d+" SUB13;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+p+"Blue_Sun;^"+s+"Green_Sun;^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 0 0 1 1" );
self I( "SUB13", ""+u+" SUB12;"+d+" SUB14;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+s+"Blue_Sun;^"+p+"Green_Sun;^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 0 1 0 0" );
self I( "SUB14", ""+u+" SUB13;"+d+" SUB15;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+s+"Blue_Sun;^"+s+"Green_Sun;^"+p+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 1 0 1 0" );
self I( "SUB15", ""+u+" SUB14;"+d+" SUB16;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+s+"Blue_Sun;^"+s+"Green_Sun;^"+s+"Purple_Sun;^"+p+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 1 1 0 0" );
self I( "SUB16", ""+u+" SUB15;"+d+" SUB17;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+s+"Blue_Sun;^"+s+"Green_Sun;^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+p+"No_Sun;^"+s+"Day_Sun;"+e+" r_lightTweakSunColor 0" );
self I( "SUB17", ""+u+" SUB16;"+d+" SUB18;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Red_Sun;^"+s+"Blue_Sun;^"+s+"Green_Sun;^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+p+"Day_Sun;"+e+" r_lightTweakSunColor 0 0 0 1" );
wait 0.5;
self I( "SUB18", ""+u+" SUB17;"+d+" SUB19;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;^"+p+"Normal_Sun;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+e+" r_lightTweakSunColor 0.588235 0.788235 1 1" );
self I( "SUB19", ""+u+" SUB18;"+d+" SUB20;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;^"+s+"Normal_Sun;^"+p+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+r+" SUB8" );
self I( "SUB20", ""+u+" SUB19;"+d+" SUB11;"+v+";^"+m+"[Sun_Color_Menu];^"+s+"Purple_Sun;^"+s+"Yellow_Sun;^"+s+"No_Sun;^"+s+"Day_Sun;^"+s+"Normal_Sun;^"+s+"Sun_Color/Vision_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB21", ""+u+" SUB27;"+d+" SUB22;"+v+";^"+m+"[Toggle_Visions_Menu];^"+p+"Christmas_Vision;^"+s+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+s+"Fire_Vision;^"+s+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+t+" r_colorMap 2 1" );
self I( "SUB22", ""+u+" SUB21;"+d+" SUB23;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+p+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+s+"Fire_Vision;^"+s+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+t+" r_specularMap 2 1" );
self I( "SUB23", ""+u+" SUB22;"+d+" SUB24;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+s+"Chrome_Vision;^"+p+"Cartoon_Vision;^"+s+"Fire_Vision;^"+s+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+t+" r_fullbright 0 1" );
self I( "SUB24", ""+u+" SUB23;"+d+" SUB25;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+s+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+p+"Fire_Vision;^"+s+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+t+" r_flamefx_enable 1 0" );//toggle r_revivefx_debug 1 0
self I( "SUB25", ""+u+" SUB24;"+d+" SUB26;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+s+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+s+"Fire_Vision;^"+p+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+t+" r_revivefx_debug 0 1" );
self I( "SUB26", ""+u+" SUB25;"+d+" SUB27;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+s+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+s+"Fire_Vision;^"+s+"LastStand_Vision;^"+p+"Sun_Color/Vision_Menu;^"+s+"Main_Menu;"+r+" SUB8" );
self I( "SUB27", ""+u+" SUB26;"+d+" SUB21;"+v+";^"+m+"[Toggle_Visions_Menu];^"+s+"Christmas_Vision;^"+s+"Chrome_Vision;^"+s+"Cartoon_Vision;^"+s+"Fire_Vision;^"+s+"LastStand_Vision;^"+s+"Sun_Color/Vision_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB28", ""+u+" SUB39;"+d+" SUB29;"+v+";^"+m+"[Main_Mods_Menu];^"+p+"God_Mode;^"+s+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+s+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+s+"Third_Person;^"+s+"Suicide_Mode;"+r+" MOD1" );
self I( "SUB29", ""+u+" SUB28;"+d+" SUB30;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+p+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+s+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+s+"Third_Person;^"+s+"Suicide_Mode;"+r+" MOD2" );
self I( "SUB30", ""+u+" SUB29;"+d+" SUB31;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+s+"DemiGod_Mode;^"+p+"Noclip_Mode;^"+s+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+s+"Third_Person;^"+s+"Suicide_Mode;"+r+" MOD3" );
self I( "SUB31", ""+u+" SUB30;"+d+" SUB32;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+s+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+p+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+s+"Third_Person;^"+s+"Suicide_Mode;"+r+" MOD4" );
self I( "SUB32", ""+u+" SUB31;"+d+" SUB33;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+s+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+s+"Ufo_Mode;^"+p+"NoTarget_Mode;^"+s+"Third_Person;^"+s+"Suicide_Mode;"+r+" MOD5" );
self I( "SUB33", ""+u+" SUB32;"+d+" SUB34;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+s+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+s+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+p+"Third_Person;^"+s+"Suicide_Mode;"+t+" cg_thirdperson 1 0" );
self I( "SUB34", ""+u+" SUB33;"+d+" SUB35;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"God_Mode;^"+s+"DemiGod_Mode;^"+s+"Noclip_Mode;^"+s+"Ufo_Mode;^"+s+"NoTarget_Mode;^"+s+"Third_Person;^"+p+"Suicide_Mode;"+e+" kill" );
wait 0.5;
self I( "SUB35", ""+u+" SUB34;"+d+" SUB36;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"Third_Person;^"+s+"Suicide_Mode;^"+p+"Give_All_Weapons;^"+s+"Take_All_Weapons;^"+s+"Drop_Weapon;^"+s+"Give_Ammo;^"+s+"Main_Menu;"+e+" give all" );
self I( "SUB36", ""+u+" SUB35;"+d+" SUB37;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"Third_Person;^"+s+"Suicide_Mode;^"+s+"Give_All_Weapons;^"+p+"Take_All_Weapons;^"+s+"Drop_Weapon;^"+s+"Give_Ammo;^"+s+"Main_Menu;"+e+" take all;" );
self I( "SUB37", ""+u+" SUB36;"+d+" SUB38;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"Third_Person;^"+s+"Suicide_Mode;^"+s+"Give_All_Weapons;^"+s+"Take_All_Weapons;^"+p+"Drop_Weapon;^"+s+"Give_Ammo;^"+s+"Main_Menu;"+e+" dropweapon;" );
self I( "SUB38", ""+u+" SUB37;"+d+" SUB39;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"Third_Person;^"+s+"Suicide_Mode;^"+s+"Give_All_Weapons;^"+s+"Take_All_Weapons;^"+s+"Drop_Weapon;^"+p+"Give_Ammo;^"+s+"Main_Menu;"+e+" give ammo;" );
self I( "SUB39", ""+u+" SUB38;"+d+" SUB28;"+v+";^"+m+"[Main_Mods_Menu];^"+s+"Third_Person;^"+s+"Suicide_Mode;^"+s+"Give_All_Weapons;^"+s+"Take_All_Weapons;^"+s+"Drop_Weapon;^"+s+"Give_Ammo;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB40", ""+u+" SUB57;"+d+" SUB41;"+v+";^"+m+"[Sounds_Menu];^"+p+"Round_Over;^"+s+"Game_Over;^"+s+"cha_ching;^"+s+"Door_Slide_Open;^"+s+"Weap_Wall;^"+s+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal round_over" );
self I( "SUB41", ""+u+" SUB40;"+d+" SUB42;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+p+"Game_Over;^"+s+"cha_ching;^"+s+"Door_Slide_Open;^"+s+"Weap_Wall;^"+s+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal mx_game_over" );
self I( "SUB42", ""+u+" SUB41;"+d+" SUB43;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+s+"Game_Over;^"+p+"cha_ching;^"+s+"Door_Slide_Open;^"+s+"Weap_Wall;^"+s+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal cha_ching" );
self I( "SUB43", ""+u+" SUB42;"+d+" SUB44;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+s+"Game_Over;^"+s+"cha_ching;^"+p+"Door_Slide_Open;^"+s+"Weap_Wall;^"+s+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal door_slide_open" );
self I( "SUB44", ""+u+" SUB43;"+d+" SUB45;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+s+"Game_Over;^"+s+"cha_ching;^"+s+"Door_Slide_Open;^"+p+"Weap_Wall;^"+s+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal weap_wall" );
self I( "SUB45", ""+u+" SUB44;"+d+" SUB46;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+s+"Game_Over;^"+s+"cha_ching;^"+s+"Door_Slide_Open;^"+s+"Weap_Wall;^"+p+"Music_Box;^"+s+"Double_Points;"+e+" snd_playlocal music_box" );
self I( "SUB46", ""+u+" SUB45;"+d+" SUB47;"+v+";^"+m+"[Sounds_Menu];^"+s+"Round_Over;^"+s+"Game_Over;^"+s+"cha_ching;^"+s+"Door_Slide_Open;^"+s+"Weap_Wall;^"+s+"Music_Box;^"+p+"Double_Points;"+e+" snd_playlocal dp_vox" );
wait 0.5;
self I( "SUB47", ""+u+" SUB46;"+d+" SUB48;"+v+";^"+m+"[Sounds_Menu];^"+p+"Insta_Kill;^"+s+"Max_Ammo;^"+s+".Nuke;^"+s+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal insta_vox" );
self I( "SUB48", ""+u+" SUB47;"+d+" SUB49;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+p+"Max_Ammo;^"+s+".Nuke;^"+s+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal ma_vox" );
self I( "SUB49", ""+u+" SUB48;"+d+" SUB50;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+s+"Max_Ammo;^"+p+".Nuke;^"+s+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal nuke_vox" );
self I( "SUB50", ""+u+" SUB49;"+d+" SUB51;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+s+"Max_Ammo;^"+s+".Nuke;^"+p+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal mx_revive_jingle" );
self I( "SUB51", ""+u+" SUB50;"+d+" SUB52;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+s+"Max_Ammo;^"+s+".Nuke;^"+s+"Revive_Jingle;^"+p+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal mx_jugger_jingle" );
self I( "SUB52", ""+u+" SUB51;"+d+" SUB53;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+s+"Max_Ammo;^"+s+".Nuke;^"+s+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+p+"Doubletap_Jingle;^"+s+"Speed_Jingle;"+e+" snd_playlocal mx_doubletap_jingle" );
self I( "SUB53", ""+u+" SUB52;"+d+" SUB54;"+v+";^"+m+"[Sounds_Menu];^"+s+"Insta_Kill;^"+s+"Max_Ammo;^"+s+".Nuke;^"+s+"Revive_Jingle;^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+p+"Speed_Jingle;"+e+" snd_playlocal mx_speed_jingle" );
wait 0.5;
self I( "SUB54", ""+u+" SUB53;"+d+" SUB55;"+v+";^"+m+"[Sounds_Menu];^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;^"+p+"Dog;^"+s+"Monkey_Song;^"+s+"Packa_Jingle;^"+s+"Main_Menu;"+e+" snd_playlocal dog_vox" );
self I( "SUB55", ""+u+" SUB54;"+d+" SUB56;"+v+";^"+m+"[Sounds_Menu];^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;^"+s+"Dog;^"+p+"Monkey_Song;^"+s+"Packa_Jingle;^"+s+"Main_Menu;"+e+" snd_playlocal monkey_song" );
self I( "SUB56", ""+u+" SUB55;"+d+" SUB57;"+v+";^"+m+"[Sounds_Menu];^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;^"+s+"Dog;^"+s+"Monkey_Song;^"+p+"Packa_Jingle;^"+s+"Main_Menu;"+e+" snd_playlocal mx_packa_jingle" );
self I( "SUB57", ""+u+" SUB56;"+d+" SUB40;"+v+";^"+m+"[Sounds_Menu];^"+s+"Jugger_Jingle;^"+s+"Doubletap_Jingle;^"+s+"Speed_Jingle;^"+s+"Dog;^"+s+"Monkey_Song;^"+s+"Packa_Jingle;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB58", ""+u+" SUB76;"+d+" SUB59;"+v+";^"+m+"[Dvar_Menu];^"+p+"Game_Speed;^"+s+"Sprint_Speed;^"+s+"Time_Scale;^"+s+"Jump_Heights;^"+s+"Gravity;^"+s+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" g_speed 350 190" );
self I( "SUB59", ""+u+" SUB58;"+d+" SUB60;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+p+"Sprint_Speed;^"+s+"Time_Scale;^"+s+"Jump_Heights;^"+s+"Gravity;^"+s+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" player_sprintSpeedScale 5 2.5 1" );
self I( "SUB60", ""+u+" SUB59;"+d+" SUB61;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+s+"Sprint_Speed;^"+p+"Time_Scale;^"+s+"Jump_Heights;^"+s+"Gravity;^"+s+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" timescale 2 1 0.5" );
self I( "SUB61", ""+u+" SUB60;"+d+" SUB62;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+s+"Sprint_Speed;^"+s+"Time_Scale;^"+p+"Jump_Heights;^"+s+"Gravity;^"+s+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" jump_height 999 125 55" );
self I( "SUB62", ""+u+" SUB61;"+d+" SUB63;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+s+"Sprint_Speed;^"+s+"Time_Scale;^"+s+"Jump_Heights;^"+p+"Gravity;^"+s+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" g_gravity 115 800 -800" );
self I( "SUB63", ""+u+" SUB62;"+d+" SUB64;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+s+"Sprint_Speed;^"+s+"Time_Scale;^"+s+"Jump_Heights;^"+s+"Gravity;^"+p+"Unlimited_Ammo;^"+s+"Unlimited_Sprint;"+t+" player_sustainAmmo 1 0" );
self I( "SUB64", ""+u+" SUB63;"+d+" SUB65;"+v+";^"+m+"[Dvar_Menu];^"+s+"Game_Speed;^"+s+"Sprint_Speed;^"+s+"Time_Scale;^"+s+"Jump_Heights;^"+s+"Gravity;^"+s+"Unlimited_Ammo;^"+p+"Unlimited_Sprint;"+t+" player_sprintUnlimited 1 0" );
wait 0.5;
self I( "SUB65", ""+u+" SUB64;"+d+" SUB66;"+v+";^"+m+"[Dvar_Menu];^"+p+"Increased_Health;^"+s+"Longer_LastStand;^"+s+"Tripple_Tap;^"+s+"Melee_Range;^"+s+"Revive_Distance;^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" player_meleeDamageMultiplier 0 0.4" );
self I( "SUB66", ""+u+" SUB65;"+d+" SUB67;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+p+"Longer_LastStand;^"+s+"Tripple_Tap;^"+s+"Melee_Range;^"+s+"Revive_Distance;^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" player_lastStandBleedoutTime 9999 30" );
self I( "SUB67", ""+u+" SUB66;"+d+" SUB68;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+s+"Longer_LastStand;^"+p+"Tripple_Tap;^"+s+"Melee_Range;^"+s+"Revive_Distance;^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" perk_weapRateMultiplier 0.02 0.75" );
self I( "SUB68", ""+u+" SUB67;"+d+" SUB69;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+s+"Longer_LastStand;^"+s+"Tripple_Tap;^"+p+"Melee_Range;^"+s+"Revive_Distance;^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" player_meleeRange 1000 500 64" );
self I( "SUB69", ""+u+" SUB68;"+d+" SUB70;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+s+"Longer_LastStand;^"+s+"Tripple_Tap;^"+s+"Melee_Range;^"+p+"Revive_Distance;^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" Revive_Trigger_Radius 10000 5000 64" );
self I( "SUB70", ""+u+" SUB69;"+d+" SUB71;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+s+"Longer_LastStand;^"+s+"Tripple_Tap;^"+s+"Melee_Range;^"+s+"Revive_Distance;^"+p+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;"+t+" g_knockback 9999 4500 0" );
self I( "SUB71", ""+u+" SUB70;"+d+" SUB72;"+v+";^"+m+"[Dvar_Menu];^"+s+"Increased_Health;^"+s+"Longer_LastStand;^"+s+"Tripple_Tap;^"+s+"Melee_Range;^"+s+"Revive_Distance;^"+s+"KnockBack_Distance;^"+p+"Box_Doesnt_Move;"+t+" magic_chest_movable 0 1" );
wait 0.5;
self I( "SUB72", ""+u+" SUB71;"+d+" SUB73;"+v+";^"+m+"[Dvar_Menu];^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;^"+p+"Invisible_Weapon;^"+s+"Pro_Mod;^"+s+"Wall_Hack;^"+s+"FPS;^"+s+"Main_Menu;"+t+" cg_drawgun 0 1" );
self I( "SUB73", ""+u+" SUB72;"+d+" SUB74;"+v+";^"+m+"[Dvar_Menu];^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;^"+s+"Invisible_Weapon;^"+p+"Pro_Mod;^"+s+"Wall_Hack;^"+s+"FPS;^"+s+"Main_Menu;"+t+" cg_fov 90 110 15 65" );
self I( "SUB74", ""+u+" SUB73;"+d+" SUB75;"+v+";^"+m+"[Dvar_Menu];^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;^"+s+"Invisible_Weapon;^"+s+"Pro_Mod;^"+p+"Wall_Hack;^"+s+"FPS;^"+s+"Main_Menu;"+t+" r_znear 35 65 4" );
self I( "SUB75", ""+u+" SUB74;"+d+" SUB76;"+v+";^"+m+"[Dvar_Menu];^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;^"+s+"Invisible_Weapon;^"+s+"Pro_Mod;^"+s+"Wall_Hack;^"+p+"FPS;^"+s+"Main_Menu;"+t+" cg_drawFPS 2 1 0" );
self I( "SUB76", ""+u+" SUB75;"+d+" SUB58;"+v+";^"+m+"[Dvar_Menu];^"+s+"KnockBack_Distance;^"+s+"Box_Doesnt_Move;^"+s+"Invisible_Weapon;^"+s+"Pro_Mod;^"+s+"Wall_Hack;^"+s+"FPS;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB77", ""+u+" SUB83;"+d+" SUB78;"+v+";^"+m+"[Admin_Menu];^"+p+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+s+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB84" );
self I( "SUB78", ""+u+" SUB77;"+d+" SUB79;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+p+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+s+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB99" );
self I( "SUB79", ""+u+" SUB78;"+d+" SUB80;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+p+"Server_Menu;^"+s+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB107" );
self I( "SUB80", ""+u+" SUB79;"+d+" SUB81;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+p+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB113" );
self I( "SUB81", ""+u+" SUB80;"+d+" SUB82;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+s+"Dev_Dvars;^"+p+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB119" );
self I( "SUB82", ""+u+" SUB81;"+d+" SUB83;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+s+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+p+"Arcade_Mode_Menu;^"+s+"Main_Menu;"+r+" SUB139" );
self I( "SUB83", ""+u+" SUB82;"+d+" SUB77;"+v+";^"+m+"[Admin_Menu];^"+s+"Rank_Menu;^"+s+"Clan_Tag_Menu;^"+s+"Server_Menu;^"+s+"Dev_Dvars;^"+s+"Death_Cards_Menu;^"+s+"Arcade_Mode_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB84", ""+u+" SUB98;"+d+" SUB85;"+v+";^"+m+"[Rank_Menu];^"+p+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK0" );
self I( "SUB85", ""+u+" SUB84;"+d+" SUB86;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+p+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK1" );
self I( "SUB86", ""+u+" SUB85;"+d+" SUB87;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+p+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK2" );
self I( "SUB87", ""+u+" SUB86;"+d+" SUB88;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+p+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK3" );
self I( "SUB88", ""+u+" SUB87;"+d+" SUB89;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+p+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK4" );
self I( "SUB89", ""+u+" SUB88;"+d+" SUB90;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+p+"Prestige_5_Lv_65;^"+s+"Prestige_6_Lv_65;"+r+" RANK5" );
self I( "SUB90", ""+u+" SUB89;"+d+" SUB91;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_0_Lv_65;^"+s+"Prestige_1_Lv_65;^"+s+"Prestige_2_Lv_65;^"+s+"Prestige_3_Lv_65;^"+s+"Prestige_4_Lv_65;^"+s+"Prestige_5_Lv_65;^"+p+"Prestige_6_Lv_65;"+r+" RANK6" );
wait 0.5;
self I( "SUB91", ""+u+" SUB90;"+d+" SUB92;"+v+";^"+m+"[Rank_Menu];^"+p+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+r+" RANK7" );
self I( "SUB92", ""+u+" SUB91;"+d+" SUB93;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+p+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+r+" RANK8" );
self I( "SUB93", ""+u+" SUB92;"+d+" SUB94;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+p+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+r+" RANK9" );
self I( "SUB94", ""+u+" SUB93;"+d+" SUB95;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+p+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+r+" RANK10" );
self I( "SUB95", ""+u+" SUB94;"+d+" SUB96;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+p+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+r+" RANK11" );
self I( "SUB96", ""+u+" SUB95;"+d+" SUB97;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+p+"Lock/Unlock_Missions;^"+s+"Admin_Menu;"+t+" " );
self I( "SUB97", ""+u+" SUB96;"+d+" SUB98;"+v+";^"+m+"[Rank_Menu];^"+s+"Prestige_7_Lv_65;^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+p+"Admin_Menu;"+r+" SUB77" );
wait 0.5;
self I( "SUB98", ""+u+" SUB97;"+d+" SUB84;"+V+";^"+m+"[Rank_Menu];^"+s+"Prestige_8_Lv_65;^"+s+"Prestige_9_Lv_65;^"+s+"Prestige_10_Lv_65;^"+s+"Prestige_11_Lv_65;^"+s+"Lock/Unlock_Missions;^"+s+"Admin_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB99", ""+u+" SUB106;"+d+" SUB100;"+v+";^"+m+"[Clan_Tag_Menu];^"+p+"Rain;^"+s+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+s+"****;^"+s+"IW;^"+s+"Admin_Menu;"+r+" CLAN1" );
self I( "SUB100", ""+u+" SUB99;"+d+" SUB101;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+p+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+s+"****;^"+s+"IW;^"+s+"Admin_Menu;"+r+" CLAN2" );
self I( "SUB101", ""+u+" SUB100;"+d+" SUB102;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+s+"Cycl;^"+p+"Move;^"+s+"[{IW}];^"+s+"****;^"+s+"IW;^"+s+"Admin_Menu;"+r+" CLAN3" );
self I( "SUB102", ""+u+" SUB101;"+d+" SUB103;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+s+"Cycl;^"+s+"Move;^"+p+"[{IW}];^"+s+"****;^"+s+"IW;^"+s+"Admin_Menu;"+r+" CLAN4" );
self I( "SUB103", ""+u+" SUB102;"+d+" SUB104;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+s+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+p+"****;^"+s+"IW;^"+s+"Admin_Menu;"+r+" CLAN5" );
self I( "SUB104", ""+u+" SUB103;"+d+" SUB105;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+s+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+s+"****;^"+p+"IW;^"+s+"Admin_Menu;"+r+" CLAN6" );
self I( "SUB105", ""+u+" SUB104;"+d+" SUB106;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Rain;^"+s+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+s+"****;^"+s+"IW;^"+p+"Admin_Menu;"+r+" SUB77" );
wait 0.5;
self I( "SUB106", ""+u+" SUB105;"+d+" SUB99;"+v+";^"+m+"[Clan_Tag_Menu];^"+s+"Cycl;^"+s+"Move;^"+s+"[{IW}];^"+s+"****;^"+s+"IW;^"+S+"Admin_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB107", ""+u+" SUB112;"+d+" SUB108;"+v+";^"+m+"[Server_Menu];^"+p+"Kick_Player_1;^"+s+"Kick_Player_2;^"+s+"Kick_Player_3;^"+s+"End_Game;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+e+" clientkick 1" );
self I( "SUB108", ""+u+" SUB107;"+d+" SUB109;"+v+";^"+m+"[Server_Menu];^"+s+"Kick_Player_1;^"+p+"Kick_Player_2;^"+s+"Kick_Player_3;^"+s+"End_Game;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+e+" clientkick 2" );
self I( "SUB109", ""+u+" SUB108;"+d+" SUB110;"+v+";^"+m+"[Server_Menu];^"+s+"Kick_Player_1;^"+s+"Kick_Player_2;^"+p+"Kick_Player_3;^"+s+"End_Game;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+e+" clientkick 3" );
self I( "SUB110", ""+u+" SUB109;"+d+" SUB111;"+v+";^"+m+"[Server_Menu];^"+s+"Kick_Player_1;^"+s+"Kick_Player_2;^"+s+"Kick_Player_3;^"+p+"End_Game;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+e+" killserver" );
self I( "SUB111", ""+u+" SUB110;"+d+" SUB112;"+v+";^"+m+"[Server_Menu];^"+s+"Kick_Player_1;^"+s+"Kick_Player_2;^"+s+"Kick_Player_3;^"+s+"End_Game;^"+p+"Admin_Menu;^"+s+"Main_Menu;*;"+r+" SUB77" );
self I( "SUB112", ""+u+" SUB111;"+d+" SUB107;"+v+";^"+m+"[Server_Menu];^"+s+"Kick_Player_1;^"+s+"Kick_Player_2;^"+s+"Kick_Player_3;^"+s+"End_Game;^"+s+"Admin_Menu;^"+p+"Main_Menu;*;"+r+" MAIN1" );
wait 0.5;
self I( "SUB113", ""+u+" SUB118;"+d+" SUB114;"+v+";^"+m+"[Dev_Dvars_Menu];^"+p+".Developer;^"+s+".Developer_Script;^"+s+".Developeruser;^"+s+".Superuser;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+t+" Developer 1 0" );
self I( "SUB114", ""+u+" SUB113;"+d+" SUB115;"+v+";^"+m+"[Dev_Dvars_Menu];^"+s+".Developer;^"+p+".Developer_Script;^"+s+".Developeruser;^"+s+".Superuser;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+t+" Developer_script 1 0" );
self I( "SUB115", ""+u+" SUB114;"+d+" SUB116;"+v+";^"+m+"[Dev_Dvars_Menu];^"+s+".Developer;^"+s+".Developer_Script;^"+p+".Developeruser;^"+s+".Superuser;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+t+" Developeruser 1 0" );
self I( "SUB116", ""+u+" SUB115;"+d+" SUB117;"+v+";^"+m+"[Dev_Dvars_Menu];^"+s+".Developer;^"+s+".Developer_Script;^"+s+".Developeruser;^"+p+".Superuser;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;"+t+" superuser 1 0" );
self I( "SUB117", ""+u+" SUB116;"+d+" SUB118;"+v+";^"+m+"[Dev_Dvars_Menu];^"+s+".Developer;^"+s+".Developer_Script;^"+s+".Developeruser;^"+s+".Superuser;^"+p+"Admin_Menu;^"+s+"Main_Menu;*;"+r+" SUB77" );
self I( "SUB118", ""+u+" SUB117;"+d+" SUB113;"+v+";^"+m+"[Dev_Dvars_Menu];^"+s+".Developer;^"+s+".Developer_Script;^"+s+".Developeruser;^"+s+".Superuser;^"+s+"Admin_Menu;^"+p+"Main_Menu;*;"+r+" MAIN1" );
wait 0.5;
self I( "SUB119", ""+u+" SUB122;"+d+" SUB120;"+v+";^"+m+"[Death_Cards_Menu];^"+p+"Add_Death_Cards;^"+s+"Remove_Death_Cards;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;**;***;"+r+" SUB123" );
self I( "SUB120", ""+u+" SUB119;"+d+" SUB121;"+v+";^"+m+"[Death_Cards_Menu];^"+s+"Add_Death_Cards;^"+p+"Remove_Death_Cards;^"+s+"Admin_Menu;^"+s+"Main_Menu;*;**;***;"+r+" SUB123a" );
self I( "SUB121", ""+u+" SUB120;"+d+" SUB122;"+v+";^"+m+"[Death_Cards_Menu];^"+s+"Add_Death_Cards;^"+s+"Remove_Death_Cards;^"+p+"Admin_Menu;^"+s+"Main_Menu;*;**;***;"+r+" SUB77" );
self I( "SUB122", ""+u+" SUB121;"+d+" SUB119;"+v+";^"+m+"[Death_Cards_Menu];^"+s+"Add_Death_Cards;^"+s+"Remove_Death_Cards;^"+s+"Admin_Menu;^"+p+"Main_Menu;*;**;***;"+r+" MAIN1" );
wait 0.5;
self I( "SUB123", ""+u+" SUB138;"+d+" SUB124;"+v+";^"+m+"[Add_DC_Menu];^"+p+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_sticksstones" );
self I( "SUB124", ""+u+" SUB123;"+d+" SUB125;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+p+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_vampire" );
self I( "SUB125", ""+u+" SUB124;"+d+" SUB126;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+p+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_berserker" );
self I( "SUB126", ""+u+" SUB125;"+d+" SUB127;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+p+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_zombie" );
self I( "SUB127", ""+u+" SUB126;"+d+" SUB128;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+p+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_paintball" );
self I( "SUB128", ""+u+" SUB127;"+d+" SUB129;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+p+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_add collectible_dirtyharry" );
self I( "SUB129", ""+u+" SUB128;"+d+" SUB130;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+p+"Morphine;"+e+" collectible_add collectible_morphine" );
wait 0.5;
self I( "SUB130", ""+u+" SUB129;"+d+" SUB131;"+v+";^"+m+"[Add_DC_Menu];^"+p+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_thunder" );
self I( "SUB131", ""+u+" SUB130;"+d+" SUB132;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+p+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_flak_jacket" );
self I( "SUB132", ""+u+" SUB131;"+d+" SUB133;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+p+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_hardcore" );
self I( "SUB133", ""+u+" SUB132;"+d+" SUB134;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+p+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_body_armor" );
self I( "SUB134", ""+u+" SUB133;"+d+" SUB135;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+p+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_hard_headed" );
self I( "SUB135", ""+u+" SUB134;"+d+" SUB136;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+p+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_add collectible_dead_hands" );
self I( "SUB136", ""+u+" SUB135;"+d+" SUB137;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+p+"Death_Cards_Menu;"+r+" SUB119" );
wait 0.5;
self I( "SUB137", ""+u+" SUB136;"+d+" SUB138;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;^"+p+"Admin_Menu;^"+s+"Main_Menu;"+r+" SUB77" );
self I( "SUB138", ""+u+" SUB137;"+d+" SUB123;"+v+";^"+m+"[Add_DC_Menu];^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;^"+s+"Admin_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB123a", ""+u+" SUB138a;"+d+" SUB124a;"+v+";^"+m+"[Remove_DC_Menu];^"+p+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_sticksstones" );
self I( "SUB124a", ""+u+" SUB123a;"+d+" SUB125a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+p+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_vampire" );
self I( "SUB125a", ""+u+" SUB124a;"+d+" SUB126a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+p+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_berserker" );
self I( "SUB126a", ""+u+" SUB125a;"+d+" SUB127a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+p+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_zombie" );
self I( "SUB127a", ""+u+" SUB126a;"+d+" SUB128a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+p+"Paintball;^"+s+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_paintball" );
self I( "SUB128a", ""+u+" SUB127a;"+d+" SUB129a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+p+"Dirtyharry;^"+s+"Morphine;"+e+" collectible_remove collectible_dirtyharry" );
self I( "SUB129a", ""+u+" SUB128a;"+d+" SUB130a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Sticksstones;^"+s+"Vampire;^"+s+"Berserker;^"+s+"Zombie;^"+s+"Paintball;^"+s+"Dirtyharry;^"+p+"Morphine;"+e+" collectible_remove collectible_morphine" );
wait 0.5;
self I( "SUB130a", ""+u+" SUB129a;"+d+" SUB131a;"+v+";^"+m+"[Remove_DC_Menu];^"+p+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_thunder" );
self I( "SUB131a", ""+u+" SUB130a;"+d+" SUB132a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+p+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_flak_jacket" );
self I( "SUB132a", ""+u+" SUB131a;"+d+" SUB133a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+p+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_hardcore" );
self I( "SUB133a", ""+u+" SUB132a;"+d+" SUB134a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+p+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_body_armor" );
self I( "SUB134a", ""+u+" SUB133a;"+d+" SUB135a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+p+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_hard_headed" );
self I( "SUB135a", ""+u+" SUB134a;"+d+" SUB136a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+p+"Dead_Hands;^"+s+"Death_Cards_Menu;"+e+" collectible_remove collectible_dead_hands" );
self I( "SUB136a", ""+u+" SUB135a;"+d+" SUB137a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Thunder;^"+s+"Flak_Jacket;^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+p+"Death_Cards_Menu;"+r+" SUB119" );
wait 0.5;
self I( "SUB137a", ""+u+" SUB136a;"+d+" SUB138a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;^"+p+"Admin_Menu;^"+s+"Main_Menu;"+r+" SUB77" );
self I( "SUB138a", ""+u+" SUB137a;"+d+" SUB123a;"+v+";^"+m+"[Remove_DC_Menu];^"+s+"Hardcore;^"+s+"Body_Armor;^"+s+"Hard_Headed;^"+s+"Dead_Hands;^"+s+"Death_Cards_Menu;^"+s+"Admin_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
wait 0.5;
self I( "SUB139", ""+u+" SUB145;"+d+" SUB140;"+v+";^"+m+"[Arcade_Mode_Menu];^"+p+"Zombie_Mode;^"+s+"Arcade_Mode;^"+s+"Points_for_kills;^"+s+"Points_for_revives;^"+s+"Points_for_headshots;^"+s+"Admin_Menu;^"+s+"Main_Menu;"+t+" zombiemode 1 0" );
self I( "SUB140", ""+u+" SUB139;"+d+" SUB141;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+p+"Arcade_Mode;^"+s+"Points_for_kills;^"+s+"Points_for_revives;^"+s+"Points_for_headshots;^"+s+"Admin_Menu;^"+s+"Main_Menu;"+t+" arcademode 1 0" );
self I( "SUB141", ""+u+" SUB140;"+d+" SUB142;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+s+"Arcade_Mode;^"+p+"Points_for_kills;^"+s+"Points_for_revives;^"+s+"Points_for_headshots;^"+s+"Admin_Menu;^"+s+"Main_Menu;"+t+" arcademode_score_kill 10000 1000 100" );
self I( "SUB142", ""+u+" SUB141;"+d+" SUB143;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+s+"Arcade_Mode;^"+s+"Points_for_kills;^"+p+"Points_for_revives;^"+s+"Points_for_headshots;^"+s+"Admin_Menu;^"+s+"Main_Menu;"+t+" arcademode_score_revive 10000 1000 100" );
self I( "SUB143", ""+u+" SUB142;"+d+" SUB144;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+s+"Arcade_Mode;^"+s+"Points_for_kills;^"+s+"Points_for_revives;^"+p+"Points_for_headshots;^"+s+"Admin_Menu;^"+s+"Main_Menu;"+r+" arcademode_score_headshot 10000 1000 100" );
self I( "SUB144", ""+u+" SUB143;"+d+" SUB145;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+s+"Arcade_Mode;^"+s+"Points_for_kills;^"+s+"Points_for_revives;^"+s+"Points_for_headshots;^"+p+"Admin_Menu;^"+s+"Main_Menu;"+r+" SUB77" );
self I( "SUB145", ""+u+" SUB144;"+d+" SUB139;"+v+";^"+m+"[Arcade_Mode_Menu];^"+s+"Zombie_Mode;^"+s+"Arcade_Mode;^"+s+"Points_for_kills;^"+s+"Points_for_revives;^"+s+"Points_for_headshots;^"+s+"Admin_Menu;^"+p+"Main_Menu;"+r+" MAIN1" );
}
Information:GoldenWarrior's Infect Menu V3.0.0 Beta::Information
Please read Information Under this sentence Please...
-This Infect Menu might be in Cobra V2 or later gen Mod Menu,and Golden Skybase Patch.
-Release Date for v2.0.0 ::Unknown As of Now
Special Features
-Smaller Characters than V2.0.0
-Toggle any dvar at command
-Custom Fog and Sun Colors
-Custom Sounds for all Actions within Menu System
+Everything that was in V2.0.0
+Chuck Norris was here dont tell GoldenWarrior ;)
Last edited by GoldenWarrior ; edited 81 times in total
The following 39 users thanked GoldenWarrior for this useful post:
jhelsel (04-01-2012), DGxUnknown-V1 (03-31-2012), Steeen (01-22-2012), _Techie_ (12-22-2011), X18PUMA (12-18-2011), chubby12 (12-16-2011), Firmino (12-15-2011), TTG_Charlie999 (09-23-2011), badbrad70 (09-11-2011), TheOGVenom (09-11-2011), Xbox360HacksAndMods (09-11-2011), zzoldzgregzz (08-15-2011), nomrah03 (08-08-2011), PieXBeast (08-07-2011), SiniisterZ (08-07-2011), KvZxDoNkZz (08-04-2011), -Dino (08-04-2011), somekid2120 (08-03-2011), zachyo44 (07-28-2011), the_hillbilly (05-29-2011), captunicorn21 (05-29-2011), Endanger (05-28-2011), Ahhmazinq (05-26-2011), waterzz032 (05-26-2011), ElusivePatches (05-26-2011), DLT (05-17-2011), Tarki17 (05-17-2011), MaGiiKvFatMaN (05-17-2011), pandamodding (05-17-2011), JamysDad (05-17-2011), XRC (05-15-2011), Fuzzeh_X (05-15-2011), junny2233 (05-15-2011), blackops123454321 (05-15-2011), Firemanns (05-15-2011), Nite (05-15-2011), iijesuschrist (05-15-2011), TTG_v5 (05-13-2011), xLuunZz (05-11-2011)
#2. Posted:
Status: Offline
Joined: Apr 04, 201113Year Member
Posts: 1,667
Reputation Power: 192
Status: Offline
Joined: Apr 04, 201113Year Member
Posts: 1,667
Reputation Power: 192
put teleporting in..
- 20useful
- 2not useful
#3. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Bulbasaur wrote put teleporting in..
Done......Thanks for some input
- 3useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Jul 07, 201014Year Member
Posts: 473
Reputation Power: 19
Status: Offline
Joined: Jul 07, 201014Year Member
Posts: 473
Reputation Power: 19
Jetpack
Drivable car
Drivable car
- 12useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
broganboy wrote Jetpack
Drivable car
Drivable car-Added
Jetpack-Added
Thanks for your input
- 2useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Aug 15, 201014Year Member
Posts: 161
Reputation Power: 6
Status: Offline
Joined: Aug 15, 201014Year Member
Posts: 161
Reputation Power: 6
Ability to change clan tag in game, activate power for host, sky base, music menu.
- 10useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
I_Rage_Hard wrote Ability to change clan tag in game, activate power for host, sky base, music menu.
Clan tag editor-need to make one lol
activate power-done
Sky base-done
Music menu=easy
Thanks for your input
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Dec 15, 201014Year Member
Posts: 1,332
Reputation Power: 103
Status: Offline
Joined: Dec 15, 201014Year Member
Posts: 1,332
Reputation Power: 103
infectable Xp ... put it
- 10useful
- 0not useful
#9. Posted:
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
Status: Offline
Joined: Jul 12, 201014Year Member
Posts: 1,402
Reputation Power: 70
-Hacker- wrote infectable Xp ... put it
Not possible only can edit xp using an editor :/ sorry
- 0useful
- 0not useful
#10. Posted:
Status: Offline
Joined: Jul 15, 201014Year Member
Posts: 445
Reputation Power: 21
Status: Offline
Joined: Jul 15, 201014Year Member
Posts: 445
Reputation Power: 21
theres no way you just added divable car, jetpack within 1 min :O
- 20useful
- 2not useful
You are viewing our Forum Archives. To view or take place in current topics click here.