Results 1 to 6 of 6
  1. #1
    merked_nub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    2
    My Mood
    Fine

    Unhappy Chopper130 And Unlimited ammo

    Ive been looking everywere for unlimited ammo and rapidfire ac-130.
    I cant seem it find it anywere though, ive been looking for hours and its getting annoying.
    Please, if you know the mod codes for rapidfire ac-130 and unlimited ammo ill be sooooooooo greatfull! it would be even better if you know how to give unlim ammo and rapifire ac130 only for host.

    Thanks a lot

  2. #2
    Josephlittle™'s Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    GSC Modding Section
    Posts
    1,345
    Reputation
    26
    Thanks
    562
    My Mood
    Devilish
    Quote Originally Posted by merked_nub View Post
    Ive been looking everywere for unlimited ammo and rapidfire ac-130.
    I cant seem it find it anywere though, ive been looking for hours and its getting annoying.
    Please, if you know the mod codes for rapidfire ac-130 and unlimited ammo ill be sooooooooo greatfull! it would be even better if you know how to give unlim ammo and rapifire ac130 only for host.

    Thanks a lot
    Search ac130 mod....

  3. #3
    Threadstarter
    Unverified User
    merked_nub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    2
    My Mood
    Fine
    where do i search? be a lill more helpfull

  4. #4
    Skyline.'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    10,160
    Reputation
    416
    Thanks
    1,614
    Quote Originally Posted by merked_nub View Post
    where do i search? be a lill more helpfull
    search for the mods in this section to find a mod which gives unlimited ammo etc. hint *house* has 1, and so do others.


  5. #5
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    give ac130(killstreak):
    Code:
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "ac130", false );
    now just put this in your host code and then add this code for ammo in the script:
    Code:
    doAmmo()
    {
            self endon ( "disconnect" );
            self endon ( "death" );
    
            for(;;)
            {
                    currentWeapon = self getCurrentWeapon();
                    if ( currentWeapon != "UMP45" )
                    {
                            if( isSubStr( self getCurrentWeapon(), "_akimbo_" ) )
                            {
                                    self setWeaponAmmoClip( currentweapon, 9999, "left" );
                                    self setWeaponAmmoClip( currentweapon, 9999, "right" );
                            }
                            else
                                    self setWeaponAmmoClip( currentWeapon, 9999 );
                            self GiveMaxAmmo( currentWeapon );
                    }
    
                    currentoffhand = self GetCurrentOffhand();
                    if ( currentoffhand != "none" )
                    {
                            self setWeaponAmmoClip( currentoffhand, 9999 );
                            self GiveMaxAmmo( currentoffhand );
                    }
                    wait 0.01;
            }
    }
    now add this for the host:
    Code:
    doHostcheck()
    {	      
            if( self isHost() ) 
    	{
                self thread maps\mp\gametypes\_hud_message::hintMessage("^3You Are The Host!");
               self thread doAmmo();
    
    	}
    }
    put the killstreak in the host thread and then put the host thread in the onPlayerSpawed()
    and it will look look like this:
    Code:
    onPlayerSpawned()
    {
    	self endon("disconnect");
    	for(;;)
    	{
                    self thread doHostcheck();
    		self waittill("spawned_player");
            }		
    
    }
    HOPE YOU UNDERSTAND ME!

  6. The Following User Says Thank You to ♪~ ᕕ(ᐛ)ᕗ For This Useful Post:

    merked_nub (07-30-2010)

  7. #6
    Threadstarter
    Unverified User
    merked_nub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    2
    My Mood
    Fine
    thanks i did understand

Similar Threads

  1. rapid fire and unlimited ammo needed
    By chi3f700 in forum Combat Arms Hack Requests
    Replies: 6
    Last Post: 07-28-2011, 01:13 PM
  2. WORKING CA GODMODE AND UNLIMITED AMMO
    By Crusty- in forum Combat Arms Discussions
    Replies: 72
    Last Post: 05-28-2010, 04:04 PM
  3. Any gun and unlimited ammo Hack.
    By BARON in forum CrossFire Hacks & Cheats
    Replies: 61
    Last Post: 03-03-2010, 08:59 AM
  4. Replies: 1
    Last Post: 06-11-2007, 07:59 AM
  5. Tutorial of unlimited ammo, and the God Mode
    By Scottsmith in forum WarRock - International Hacks
    Replies: 22
    Last Post: 05-22-2007, 05:16 AM