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 3
Call of Duty: Black Ops 3 Mods and Scripts
Call of Duty: Black Ops 3 Scripts
Black Ops 3 GSC Managed Code List 2.0 (+ Infinity Loader Support)
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="CabCon" data-source="post: 52438" data-attributes="member: 1"><p>Hey guys,</p><p>in this thread I would like to share some advanced GSC scripts for Call of Duty: Black Ops 3. You can use these functions in <a href="https://cabconmodding.com/forums/infinity-loader.228/" target="_blank">Infinity Loader</a> as well. </p><p></p><p><strong><span style="font-size: 18px">Scripts for Zombies</span></strong></p><p><strong></strong></p><p><strong>Mystery Box will never move</strong></p><p>[CODE=cpp]func_BoxesNeverMove() {</p><p> self iPrintlnBold("Unlimited Chest Rolls ^2Successful");</p><p> level.chest_min_move_usage = 999;</p><p>}[/CODE]</p><p></p><p><strong>Make all Boxes to Mystery Box, remove all Mystery Boxes</strong></p><p>[CODE=cpp]//Put into your includes</p><p>#include scripts\zm\_zm_magicbox;</p><p></p><p>//Show all Mystery Boxes</p><p>func_ShowBoxess() {</p><p> self iPrintlnBold("All Mystery Boxes ^2Spawned");</p><p> foreach(box in level.chests)</p><p> box thread zm_magicbox::show_chest();</p><p>}</p><p></p><p>//Hide all Mystery Boxes</p><p>func_HideBoxess() {</p><p> self iPrintlnBold("All Mystery Boxes ^2Hidden");</p><p> foreach(box in level.chests)</p><p> box thread zm_magicbox::hide_chest(0);</p><p>}[/CODE]</p><p></p><p><strong>Set Mystery Box cost</strong></p><p>[CODE=cpp]func_boxcost(i){</p><p> self iPrintlnBold("Box Opening price set to ^2" +i);</p><p> foreach(box in level.chests)</p><p> box.zombie_cost = i;</p><p>}[/CODE]</p><p></p><p><strong>Keep All Perks On Death</strong></p><p>[CODE=cpp]func_keepperks() {</p><p> if (!isDefined(self._retain_perks)) {</p><p> self iPrintlnBold("Keep all Perks on death ^2ON");</p><p> self._retain_perks = true;</p><p> } else {</p><p> self._retain_perks = undefined;</p><p> self iPrintlnBold("Keep all Perks on death ^1OFF");</p><p> }</p><p>}[/CODE]</p><p></p><p></p><p><strong>Set Crypto Keys</strong></p><p>[CODE=cpp]//To use Crypto you have to make sure you are in an online match first. We can force that with the following script:</p><p></p><p>//Put into init():</p><p>thread func_ForceOnlineMatch();</p><p></p><p>//Put somewhere below:</p><p>func_ForceOnlineMatch(){</p><p> level waittill("prematch_over");</p><p></p><p> while(level.inPrematchPeriod)</p><p> wait 0.5;</p><p> wait 5;</p><p> EnableOnlineMatch();</p><p> level._online = true;</p><p> level.players[0] iPrintLn("^2You are now in an online match!");</p><p>}</p><p></p><p>//If you are in an online match you can set the Cryptokeys with:</p><p>self SetDStat("mp_loot_xp_due", amountOfCryptoKeys);</p><p></p><p>//Go give yourself 1000 keys:</p><p>self SetDStat("mp_loot_xp_due", 1000);</p><p>[/CODE]</p><p>You can download a full example project for this here: <a href="https://cdn.discordapp.com/attachments/760519887218409472/769769317553799178/Crypto_Key_Reset.rar" target="_blank">https://cdn.discordapp.com/attachments/760519887218409472/769769317553799178/Crypto_Key_Reset.rar</a></p><p></p><p><strong>Set Prestige</strong></p><p>[CODE=cpp]self SetDStat("playerstatslist", "plevel", "statvalue", prestigeLevel);</p><p></p><p>//For example prestige 5:</p><p>self SetDStat("playerstatslist", "plevel", "statvalue", 5);</p><p></p><p></p><p>//Ensure it's an online match. You can view how to force your game online in "Crypto Key Script"[/CODE]</p></blockquote><p></p>
[QUOTE="CabCon, post: 52438, member: 1"] Hey guys, in this thread I would like to share some advanced GSC scripts for Call of Duty: Black Ops 3. You can use these functions in [URL='https://cabconmodding.com/forums/infinity-loader.228/']Infinity Loader[/URL] as well. [B][SIZE=5]Scripts for Zombies[/SIZE] Mystery Box will never move[/B] [CODE=cpp]func_BoxesNeverMove() { self iPrintlnBold("Unlimited Chest Rolls ^2Successful"); level.chest_min_move_usage = 999; }[/CODE] [B]Make all Boxes to Mystery Box, remove all Mystery Boxes[/B] [CODE=cpp]//Put into your includes #include scripts\zm\_zm_magicbox; //Show all Mystery Boxes func_ShowBoxess() { self iPrintlnBold("All Mystery Boxes ^2Spawned"); foreach(box in level.chests) box thread zm_magicbox::show_chest(); } //Hide all Mystery Boxes func_HideBoxess() { self iPrintlnBold("All Mystery Boxes ^2Hidden"); foreach(box in level.chests) box thread zm_magicbox::hide_chest(0); }[/CODE] [B]Set Mystery Box cost[/B] [CODE=cpp]func_boxcost(i){ self iPrintlnBold("Box Opening price set to ^2" +i); foreach(box in level.chests) box.zombie_cost = i; }[/CODE] [B]Keep All Perks On Death[/B] [CODE=cpp]func_keepperks() { if (!isDefined(self._retain_perks)) { self iPrintlnBold("Keep all Perks on death ^2ON"); self._retain_perks = true; } else { self._retain_perks = undefined; self iPrintlnBold("Keep all Perks on death ^1OFF"); } }[/CODE] [B]Set Crypto Keys[/B] [CODE=cpp]//To use Crypto you have to make sure you are in an online match first. We can force that with the following script: //Put into init(): thread func_ForceOnlineMatch(); //Put somewhere below: func_ForceOnlineMatch(){ level waittill("prematch_over"); while(level.inPrematchPeriod) wait 0.5; wait 5; EnableOnlineMatch(); level._online = true; level.players[0] iPrintLn("^2You are now in an online match!"); } //If you are in an online match you can set the Cryptokeys with: self SetDStat("mp_loot_xp_due", amountOfCryptoKeys); //Go give yourself 1000 keys: self SetDStat("mp_loot_xp_due", 1000); [/CODE] You can download a full example project for this here: [URL]https://cdn.discordapp.com/attachments/760519887218409472/769769317553799178/Crypto_Key_Reset.rar[/URL] [B]Set Prestige[/B] [CODE=cpp]self SetDStat("playerstatslist", "plevel", "statvalue", prestigeLevel); //For example prestige 5: self SetDStat("playerstatslist", "plevel", "statvalue", 5); //Ensure it's an online match. You can view how to force your game online in "Crypto Key Script"[/CODE] [/QUOTE]
Verification
Post reply
Forums
Gaming
Call of Duty Classics
Call of Duty: Black Ops 3
Call of Duty: Black Ops 3 Mods and Scripts
Call of Duty: Black Ops 3 Scripts
Black Ops 3 GSC Managed Code List 2.0 (+ Infinity Loader Support)
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