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
2 new invisibility modes
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="Mr Knife God" data-source="post: 16551" data-attributes="member: 8620"><p>I present to you guys 2 new invisibility functions. This one is for when you shoot any weapon, you become visible, and after a few seconds, you go invisible again. So the idea of this is that you know when you kill someone and before they see their death cam they can see you passing over their body? And when you decide to mod and put on invisibility mode, they can't see you at all? Well with this code, they CAN see you for a few seconds. But those few seconds will be enough to make them think that you're not really invisible, when you are. So they won't say "this f*ggot is modding he's invisible". Instead, they'll say their generic salty response to being killed.</p><p>[CODE]</p><p>Invisibility()</p><p>{</p><p> self hide();</p><p> self endon("stop_invis");</p><p> level endon("game_ended");</p><p> for(;;)</p><p> {</p><p> if(self Adsbuttonpressed() && self attackbuttonpressed())</p><p> self thread ShowHide();</p><p> wait .05;</p><p> }</p><p>}</p><p></p><p>ShowHide()</p><p>{</p><p> self show();</p><p> wait 2;</p><p> self hide();</p><p>}</p><p></p><p>ToggleInvisibility()</p><p>{</p><p> if(self.invisible == false)</p><p> {</p><p> self.invisible = true;</p><p> self thread Invisibility();</p><p> self iPrintln("Invisibility : ^2ON");</p><p> }</p><p> else</p><p> {</p><p> self notify("stop_invis");</p><p> self.invisible = false;</p><p> self iPrintln("Invisibility : ^1OFF");</p><p> self show();</p><p> }</p><p>}[/CODE]</p><p></p><p>And this code is for you knifers out there that like to be stealthy and/or like to piss people off. With this, you can be a Knife GOD.</p><p>[CODE]Invisibility()</p><p>{</p><p> self hide();</p><p> self endon("stop_invis");</p><p> for(;;)</p><p> {</p><p> if(self melebuttonpressed())</p><p> self thread ShowHide();</p><p> wait .05;</p><p> }</p><p>}</p><p></p><p>ShowHide()</p><p>{</p><p> self show();</p><p> wait .5;</p><p> self hide();</p><p>}[/CODE]</p><p>Enjoy, and tell me what you think.</p></blockquote><p></p>
[QUOTE="Mr Knife God, post: 16551, member: 8620"] I present to you guys 2 new invisibility functions. This one is for when you shoot any weapon, you become visible, and after a few seconds, you go invisible again. So the idea of this is that you know when you kill someone and before they see their death cam they can see you passing over their body? And when you decide to mod and put on invisibility mode, they can't see you at all? Well with this code, they CAN see you for a few seconds. But those few seconds will be enough to make them think that you're not really invisible, when you are. So they won't say "this f*ggot is modding he's invisible". Instead, they'll say their generic salty response to being killed. [CODE] Invisibility() { self hide(); self endon("stop_invis"); level endon("game_ended"); for(;;) { if(self Adsbuttonpressed() && self attackbuttonpressed()) self thread ShowHide(); wait .05; } } ShowHide() { self show(); wait 2; self hide(); } ToggleInvisibility() { if(self.invisible == false) { self.invisible = true; self thread Invisibility(); self iPrintln("Invisibility : ^2ON"); } else { self notify("stop_invis"); self.invisible = false; self iPrintln("Invisibility : ^1OFF"); self show(); } }[/CODE] And this code is for you knifers out there that like to be stealthy and/or like to piss people off. With this, you can be a Knife GOD. [CODE]Invisibility() { self hide(); self endon("stop_invis"); for(;;) { if(self melebuttonpressed()) self thread ShowHide(); wait .05; } } ShowHide() { self show(); wait .5; self hide(); }[/CODE] Enjoy, and tell me what you think. [/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
2 new invisibility modes
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