looking for some codes

ProlixUK

Known Member
Messages
100
Reaction score
48
Points
128
so basically I'm making a mod menu for bo2 zombies and I was wondering if you could help create a couple of pices of code.
I require a pice of code which sets the jetgun in zombies to unbreakable I would also like
a pice of code where any upgraded staff from origins shots don't run out, and if possible being able to shoot multiple shot cuz once you shot another charged shot the pervious one would run out.
I would also like a simple time scale code set to max which I cannot find any where and
if you really feel nutty an in game kills and headshots stat editor.... if I do recive any help I will obviously give you credit :wink:
 

ProlixUK

Known Member
Messages
100
Reaction score
48
Points
128
I don't have skype, I do have steam though just search : ThreePerkProlix
 

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
Here is one of the scripts you wanted:
Code:
noJetGunOverheating()
{
    self endon("disconnect");
    level endon("game_ended");

    while (true)
    {
        if (self getCurrentWeapon() == "jetgun_zm")
        {
            self setWeaponOverheating(0, 0);
        }
      
        wait 0.1;
    }
}
 

ProlixUK

Known Member
Messages
100
Reaction score
48
Points
128
Here is one of the scripts you wanted:
Code:
noJetGunOverheating()
{
    self endon("disconnect");
    level endon("game_ended");

    while (true)
    {
        if (self getCurrentWeapon() == "jetgun_zm")
        {
            self setWeaponOverheating(0, 0);
        }
     
        wait 0.1;
    }
}


THANKS!
 
Top