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
Call of Duty: Black Ops 3 Scripts Question
Call of Duty: Black Ops 3 Answered Questions
How to change the Speed Cola / Double Tap reloading speed? GSC
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="Collie" data-source="post: 15369" data-attributes="member: 25679"><p>Hi xasgs22, I am the creator of the mod you linked above. If you just want a mod to change the perks, then I will provide you with the script to do so. Since you said that you followed the guide Cabcon linked, I will just get you to replace the text contained in your mod's _clientids.gsc</p><p>Just copy this code and replace the existing text in _clientids.gsc:</p><p>[PHP]</p><p>#using scripts\codescripts\struct;</p><p>#using scripts\shared\callbacks_shared;</p><p>#using scripts\shared\system_shared;</p><p>#insert scripts\shared\shared.gsh;</p><p></p><p>#namespace clientids;</p><p></p><p>REGISTER_SYSTEM( "clientids", &__init__, undefined )</p><p> </p><p>function __init__()</p><p>{</p><p> callback::on_start_gametype( &init );</p><p> callback::on_connect( &on_player_connect );</p><p>} </p><p></p><p>function init()</p><p>{</p><p> // this is now handled in code ( not lan )</p><p> // see s_nextScriptClientId</p><p> level.clientid = 0;</p><p>}</p><p></p><p>function on_player_connect()</p><p>{</p><p> thread perks();</p><p> self.clientid = matchRecordNewPlayer( self );</p><p> if ( !isdefined( self.clientid ) || self.clientid == -1 )</p><p> {</p><p> self.clientid = level.clientid;</p><p> level.clientid++; // Is this safe? What if a server runs for a long time and many people join/leave</p><p> }</p><p>}</p><p></p><p>function perks()</p><p>{</p><p> SetDvar("sv_cheats", 1);</p><p> SetDvar( "perk_weapReloadMultiplier", 0.35 );</p><p> SetDvar( "perk_weapRateMultiplier", 0.5 );</p><p> SetDvar( "perk_weapSpreadMultiplier", 0.3 );</p><p>}</p><p>[/PHP]</p><p></p><p>perk_weapReloadMultiplier = Speed Cola's reload speed</p><p>perk_weapRateMultiplier = Double Tap's fire speed</p><p>perk_weapSpreadMultiplier = Deadshot Daiquiri's hip-fire spread</p><p>All the numbers are set to the ones I use in my mod. The lower the number, the more effective the perk is (Reloading faster with speed cola, shooting faster with Double Tap, etc). Feel free to experiment with different numbers. If you have any other questions just let me know.</p></blockquote><p></p>
[QUOTE="Collie, post: 15369, member: 25679"] Hi xasgs22, I am the creator of the mod you linked above. If you just want a mod to change the perks, then I will provide you with the script to do so. Since you said that you followed the guide Cabcon linked, I will just get you to replace the text contained in your mod's _clientids.gsc Just copy this code and replace the existing text in _clientids.gsc: [PHP] #using scripts\codescripts\struct; #using scripts\shared\callbacks_shared; #using scripts\shared\system_shared; #insert scripts\shared\shared.gsh; #namespace clientids; REGISTER_SYSTEM( "clientids", &__init__, undefined ) function __init__() { callback::on_start_gametype( &init ); callback::on_connect( &on_player_connect ); } function init() { // this is now handled in code ( not lan ) // see s_nextScriptClientId level.clientid = 0; } function on_player_connect() { thread perks(); self.clientid = matchRecordNewPlayer( self ); if ( !isdefined( self.clientid ) || self.clientid == -1 ) { self.clientid = level.clientid; level.clientid++; // Is this safe? What if a server runs for a long time and many people join/leave } } function perks() { SetDvar("sv_cheats", 1); SetDvar( "perk_weapReloadMultiplier", 0.35 ); SetDvar( "perk_weapRateMultiplier", 0.5 ); SetDvar( "perk_weapSpreadMultiplier", 0.3 ); } [/PHP] perk_weapReloadMultiplier = Speed Cola's reload speed perk_weapRateMultiplier = Double Tap's fire speed perk_weapSpreadMultiplier = Deadshot Daiquiri's hip-fire spread All the numbers are set to the ones I use in my mod. The lower the number, the more effective the perk is (Reloading faster with speed cola, shooting faster with Double Tap, etc). Feel free to experiment with different numbers. If you have any other questions just let me know. [/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
Call of Duty: Black Ops 3 Scripts Question
Call of Duty: Black Ops 3 Answered Questions
How to change the Speed Cola / Double Tap reloading speed? GSC
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