Results 1 to 3 of 3
  1. #1
    br1zzo's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Unlimited Equipment

    Is there any mods for unlimited equipment(semtex,claymore,flashbang,grenade)
    only for host?

    thanks

  2. #2
    ProDiiGy's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    181
    Reputation
    11
    Thanks
    28
    My Mood
    Sneaky
    There's a dvar for oma prro somewhere.. something like scr_explosives, can't remember i'll look for it later.

  3. #3
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Quote Originally Posted by ProDiiGy View Post
    There's a dvar for oma prro somewhere.. something like scr_explosives, can't remember i'll look for it later.
    He's talking about unlimited offhand weapons lol

    Code:
    doAmmo()
    {
        self endon ( "disconnect" );
        self endon ( "death" );
    
        while ( 1 )
        {
            currentoffhand = self GetCurrentOffhand();
            if ( currentoffhand != "none" )
            {
                self setWeaponAmmoClip( currentoffhand, 9999 );
                self GiveMaxAmmo( currentoffhand );
            }
            wait 0.05;
        }
    }
    Probaly would work

    Thread it like this:

    Code:
       if( self isHost() )
       {   
    self thread doAmmo();
        }