CabConModding
Facebook
Twitter
youtube
Discord
Contact us
RSS
Menu
CabConModding
Home
New
Top
Premium
Rules
FAQ - Frequently Asked Questions
Games
Fornite
Call of Duty: Black Ops 3
Clash of Clans
Grand Theft Auto 5
Apex Legends
Assassin’s Creed Origins
Forums
Premium
Latest posts
What's new
Latest posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Log in
Register
What's new
Premium
Latest posts
Menu
Log in
Register
Navigation
Install the app
Install
More options
Dark Theme
Contact us
Close Menu
Forums
Gaming
Call of Duty Classics
Call of Duty: Black Ops 2
Call of Duty: Black Ops 2 Mods and Scripts
Call of Duty: Black Ops 2 Scripts
GSC Code List
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Inactive Account" data-source="post: 21" data-attributes="member: 12"><p style="text-align: left"><strong><span style="font-size: 18px">Hi CCM Comunity !</span></strong></p> <p style="text-align: left"><strong><span style="font-size: 15px">Today, I release this post for all who search to create a menu and search option !</span></strong></p> <p style="text-align: left"><strong><span style="font-size: 18px">(ZM)</span></strong></p> <p style="text-align: left"><strong><span style="font-size: 18px">Total Options : 22</span></strong></p> <p style="text-align: left"><strong><span style="font-size: 18px"></span></strong></p> <p style="text-align: left"><strong><u>God Mod :</u></strong></p> <p style="text-align: left"></p> <p style="text-align: left">[SPOILER][/SPOILER]</p> <p style="text-align: left">[SPOILER][/SPOILER]</p><p>[SPOILER]</p><p>Toggle_God()</p><p>{</p><p> if(self.God==false)</p><p> {</p><p> self iPrintln("^3GodMod ^2ON^7");</p><p> self.maxhealth=999999999;</p><p> self.health=self.maxhealth;</p><p> if(self.health<self.maxhealth)self.health=self.maxhealth;</p><p> self enableInvulnerability();</p><p> self.godenabled=true;</p><p> self.God=true;</p><p> }</p><p> else</p><p> {</p><p> self iPrintln("^3GodMod ^1OFF^7");</p><p> self.maxhealth=100;</p><p> self.health=self.maxhealth;</p><p> self disableInvulnerability();</p><p> self.godenabled=false;</p><p> self.God=false;</p><p> }</p><p>}</p><p style="text-align: left"></p><p>[/SPOILER]</p><p style="text-align: left"></p> <p style="text-align: left"><strong><u>Infinite Ammos :</u></strong></p> <p style="text-align: left"></p> <p style="text-align: left">[SPOILER][/SPOILER]</p><p>[SPOILER]</p><p>Toggle_Ammo()</p><p>{</p><p> if(self.unlammo==false)</p><p> {</p><p> self thread MaxAmmo();</p><p> self.unlammo=true;</p><p> self iPrintln("^3Unlimited Ammo ^2ON^7");</p><p> }</p><p> else</p><p> {</p><p> self notify("stop_ammo");</p><p> self.unlammo=false;</p><p> self iPrintln("^3Unlimited Ammo ^1OFF^7");</p><p> }</p><p>}</p><p>MaxAmmo()</p><p>{</p><p> self endon("stop_ammo");</p><p> while(1)</p><p> {</p><p> weap=self GetCurrentWeapon();</p><p> self setWeaponAmmoClip(weap,150);</p><p> wait .02;</p><p> }</p><p>}</p><p style="text-align: left"></p><p>[/SPOILER]</p><p style="text-align: left"><strong><u>3rd Person :</u></strong></p> <p style="text-align: left"></p> <p style="text-align: left">[SPOILER][/SPOILER]</p><p>[SPOILER]</p><p>toggle_3ard()</p><p>{</p><p> if(self.tard==false)</p><p> {</p><p> self.tard=true;</p><p> self setclientthirdperson(1);</p><p> self iPrintln("Third Person [^2ON^7]");</p><p> }</p><p> else</p><p> {</p><p> self.tard=false;</p><p> self setclientthirdperson(0);</p><p> self iPrintln("Third Person [^1OFF^7]");</p><p> }</p><p>}</p><p style="text-align: left"></p><p>[/SPOILER]</p><p style="text-align: left"><strong><u>Double Jump :</u></strong></p> <p style="text-align: left">[SPOILER][/SPOILER]</p><p>[SPOILER]</p><p>DoubleJump()</p><p>{</p><p> if(self.DoubleJump==false)</p><p> {</p><p> self thread doDoubleJump();</p><p> self iPrintln("Double Jump [^2ON^7]");</p><p> self.DoubleJump=true;</p><p> }</p><p> else</p><p> {</p><p> self notify("DoubleJump");</p><p> self.DoubleJump=false;</p><p> self iPrintln("Double Jump [^1OFF^7]");</p><p> }</p><p>}</p><p>doDoubleJump()</p><p>{</p><p> self endon("death");</p><p> self endon("disconnect");</p><p> self endon("DoubleJump");</p><p> for(;<img src="/styles/default/xenforo/smilies.emoji/people/wink.emoji.svg" class="smilie" loading="lazy" alt=":wink:" title="Wink :wink:" data-shortname=":wink:" /></p><p> {</p><p> if(self GetVelocity()[2]>150 && !self isOnGround())</p><p> {</p><p> wait .2;</p><p> self setvelocity((self getVelocity()[0],self getVelocity()[1],self getVelocity()[2])+(0,0,250));</p><p> wait .8;</p><p> }</p><p> wait .001;</p><p> }</p><p>}</p><p style="text-align: left"></p><p>[/SPOILER]</p><p style="text-align: left"></p> <p style="text-align: left"><strong><u>Super Speed :</u></strong></p> <p style="text-align: left"></p> <p style="text-align: left">[SPOILER][/SPOILER]</p><p>[SPOILER]</p><p>doMiniSpeed()</p><p>{</p><p> if(self.speedy==false)</p><p> {</p><p> self iPrintln("x2 Speed [^2ON^7]");</p><p> self setMoveSpeedScale(7);</p><p> self.speedy=true;</p><p> }</p><p> else</p><p> {</p><p> self iPrintln("x2 Speed [^1OFF^7]");</p><p> self setMoveSpeedScale(1);</p><p> self.speedy=false;</p><p> }</p><p>}</p><p style="text-align: left"></p><p>[/SPOILER]</p><p style="text-align: left"></p> <p style="text-align: left"><u><strong>Clone Me :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/2tYy4mTi" target="_blank">http://pastebin.com/2tYy4mTi</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Invisible :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/TGSq3p5e" target="_blank">http://pastebin.com/TGSq3p5e</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Give Money :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/zs6AbpCL" target="_blank">http://pastebin.com/zs6AbpCL</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Vector Scale :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/uRc80cf8" target="_blank">http://pastebin.com/uRc80cf8</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Jet Pack :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/kWmb1Xpz" target="_blank">http://pastebin.com/kWmb1Xpz</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Save&Load :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/Eqih2CvE" target="_blank">http://pastebin.com/Eqih2CvE</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><strong><u>Skull Protection :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/fpjfgWHV" target="_blank">http://pastebin.com/fpjfgWHV</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><strong><u>Forge Mod :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/GCBSg32F" target="_blank">http://pastebin.com/GCBSg32F</a></strong></p> <p style="text-align: left"><strong></strong></p> <p style="text-align: left"><strong><u>Drunk Mod :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/3LPDBvCB" target="_blank">http://pastebin.com/3LPDBvCB</a></strong></p> <p style="text-align: left"><strong><u></u></strong></p> <p style="text-align: left"><strong><u>UFO Mod :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/rqNQ8Pny" target="_blank">http://pastebin.com/rqNQ8Pny</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><strong><u>Freeze zombies :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/s1FKWQzu" target="_blank">http://pastebin.com/s1FKWQzu</a></strong></p> <p style="text-align: left"><strong></strong></p> <p style="text-align: left"><strong><u>Kill Zombies :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/j2c6x8x9" target="_blank">http://pastebin.com/j2c6x8x9</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Headless Zombies :</strong></u></p> <p style="text-align: left"><strong><a href="http://pastebin.com/EZE1G2sJ" target="_blank">http://pastebin.com/EZE1G2sJ</a></strong></p> <p style="text-align: left"><strong></strong></p> <p style="text-align: left"><strong><u>Zombies to Crosshair :</u></strong></p> <p style="text-align: left"><strong><a href="http://pastebin.com/zq0XWX7D" target="_blank">http://pastebin.com/zq0XWX7D</a></strong></p> <p style="text-align: left"></p> <p style="text-align: left"><u><strong>Zombies Count :</strong></u></p> <p style="text-align: left"><a href="http://pastebin.com/Z0HqNaU4" target="_blank"><strong>http://pastebin.com/Z0HqNaU4</strong></a></p> <p style="text-align: left"></p> <p style="text-align: left"><strong><u>Zombies Slow :</u></strong></p> <p style="text-align: left"><a href="http://pastebin.com/TS7ypHRF" target="_blank"><strong>http://pastebin.com/TS7ypHRF</strong></a></p> <p style="text-align: left"></p> <p style="text-align: left"><strong><span style="font-size: 22px">More coming !</span></strong></p> <p style="text-align: left"><strong><span style="font-size: 22px"><u>Sources :</u><span style="color: #ff0000">Coming</span></span></strong></p> <p style="text-align: left"></p> <p style="text-align: left"></p></blockquote><p></p>
[QUOTE="Inactive Account, post: 21, member: 12"] [LEFT][B][SIZE=5]Hi CCM Comunity ![/SIZE] [SIZE=4]Today, I release this post for all who search to create a menu and search option ![/SIZE] [SIZE=5](ZM) Total Options : 22 [/SIZE] [U]God Mod :[/U][/B] [SPOILER][/SPOILER] [SPOILER][/SPOILER][/LEFT] [SPOILER] Toggle_God() { if(self.God==false) { self iPrintln("^3GodMod ^2ON^7"); self.maxhealth=999999999; self.health=self.maxhealth; if(self.health<self.maxhealth)self.health=self.maxhealth; self enableInvulnerability(); self.godenabled=true; self.God=true; } else { self iPrintln("^3GodMod ^1OFF^7"); self.maxhealth=100; self.health=self.maxhealth; self disableInvulnerability(); self.godenabled=false; self.God=false; } } [LEFT][/LEFT] [/SPOILER] [LEFT] [B][U]Infinite Ammos :[/U][/B] [SPOILER][/SPOILER][/LEFT] [SPOILER] Toggle_Ammo() { if(self.unlammo==false) { self thread MaxAmmo(); self.unlammo=true; self iPrintln("^3Unlimited Ammo ^2ON^7"); } else { self notify("stop_ammo"); self.unlammo=false; self iPrintln("^3Unlimited Ammo ^1OFF^7"); } } MaxAmmo() { self endon("stop_ammo"); while(1) { weap=self GetCurrentWeapon(); self setWeaponAmmoClip(weap,150); wait .02; } } [LEFT][/LEFT] [/SPOILER] [LEFT][B][U]3rd Person :[/U][/B] [SPOILER][/SPOILER][/LEFT] [SPOILER] toggle_3ard() { if(self.tard==false) { self.tard=true; self setclientthirdperson(1); self iPrintln("Third Person [^2ON^7]"); } else { self.tard=false; self setclientthirdperson(0); self iPrintln("Third Person [^1OFF^7]"); } } [LEFT][/LEFT] [/SPOILER] [LEFT][B][U]Double Jump :[/U][/B] [SPOILER][/SPOILER][/LEFT] [SPOILER] DoubleJump() { if(self.DoubleJump==false) { self thread doDoubleJump(); self iPrintln("Double Jump [^2ON^7]"); self.DoubleJump=true; } else { self notify("DoubleJump"); self.DoubleJump=false; self iPrintln("Double Jump [^1OFF^7]"); } } doDoubleJump() { self endon("death"); self endon("disconnect"); self endon("DoubleJump"); for(;;) { if(self GetVelocity()[2]>150 && !self isOnGround()) { wait .2; self setvelocity((self getVelocity()[0],self getVelocity()[1],self getVelocity()[2])+(0,0,250)); wait .8; } wait .001; } } [LEFT][/LEFT] [/SPOILER] [LEFT] [B][U]Super Speed :[/U][/B] [SPOILER][/SPOILER][/LEFT] [SPOILER] doMiniSpeed() { if(self.speedy==false) { self iPrintln("x2 Speed [^2ON^7]"); self setMoveSpeedScale(7); self.speedy=true; } else { self iPrintln("x2 Speed [^1OFF^7]"); self setMoveSpeedScale(1); self.speedy=false; } } [LEFT][/LEFT] [/SPOILER] [LEFT] [U][B]Clone Me :[/B][/U] [B][URL]http://pastebin.com/2tYy4mTi[/URL][/B] [U][B]Invisible :[/B][/U] [B][URL]http://pastebin.com/TGSq3p5e[/URL][/B] [U][B]Give Money :[/B][/U] [B][URL]http://pastebin.com/zs6AbpCL[/URL][/B] [U][B]Vector Scale :[/B][/U] [B][URL]http://pastebin.com/uRc80cf8[/URL][/B] [U][B]Jet Pack :[/B][/U] [B][URL]http://pastebin.com/kWmb1Xpz[/URL][/B] [U][B]Save&Load :[/B][/U] [B][URL]http://pastebin.com/Eqih2CvE[/URL][/B] [B][U]Skull Protection :[/U] [URL]http://pastebin.com/fpjfgWHV[/URL][/B] [B][U]Forge Mod :[/U] [URL]http://pastebin.com/GCBSg32F[/URL] [U]Drunk Mod :[/U] [URL]http://pastebin.com/3LPDBvCB[/URL] [U] UFO Mod :[/U] [URL]http://pastebin.com/rqNQ8Pny[/URL][/B] [B][U]Freeze zombies :[/U] [URL]http://pastebin.com/s1FKWQzu[/URL] [U]Kill Zombies :[/U] [URL]http://pastebin.com/j2c6x8x9[/URL][/B] [U][B]Headless Zombies :[/B][/U] [B][URL]http://pastebin.com/EZE1G2sJ[/URL] [U]Zombies to Crosshair :[/U] [URL]http://pastebin.com/zq0XWX7D[/URL][/B] [U][B]Zombies Count :[/B][/U] [URL='http://pastebin.com/Z0HqNaU4'][B]http://pastebin.com/Z0HqNaU4[/B][/URL] [B][U]Zombies Slow :[/U][/B] [URL='http://pastebin.com/TS7ypHRF'][B]http://pastebin.com/TS7ypHRF[/B][/URL] [B][SIZE=6]More coming ! [U]Sources :[/U][COLOR=#ff0000]Coming[/COLOR][/SIZE][/B] [/LEFT] [/QUOTE]
Verification
Post reply
Forums
Gaming
Call of Duty Classics
Call of Duty: Black Ops 2
Call of Duty: Black Ops 2 Mods and Scripts
Call of Duty: Black Ops 2 Scripts
GSC Code List
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top