looking for decompiled or compiled jetgun mods
BO2 Modding Releases & Resources
3
Posts
2
Posters
120
Views
1
Watching
-
looking for jetgun scripts that remove explosion or have increased cooldown
-
infinitejetgunscript() { self endon("disconnect"); self endon("stop_infinite_jg"); if(!isDefined(self.infjetg)) { self.infjetg = true; self iprintln("Unbreakable Jet Gun Active"); for(;;) { if(self getCurrentWeapon() == "jetgun_zm") self setWeaponOverHeating(0, 0); wait .05; } } else self iprintln("Unbreakable Jet Gun Already Active"); } -
looking for jetgun scripts that remove explosion or have increased cooldown
Dead073Pool try this one you can do whatever you want with it, main thing you want to look at tho is the setWeaponOverHeating(0,0); im sure this also works for the Paralyzer too on buried but you would either need to change the name for that weapon or simply add in the weapon checker
example: if(self getCurrentWeapon() == "jetgun_zm" || self getCurrentWeapon() == "slowgun_zm" || self getCurrentWeapon() == "slowgun_upgraded_zm");