Thread: [SOLVED]Ac 130

Results 1 to 7 of 7
  1. #1
    yonathanya's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    70
    Reputation
    10
    Thanks
    4
    My Mood
    Bitchy

    [SOLVED]Ac 130

    ok so , i've joined a game ,and some one there had a ac130 on the start of the game (o-o)aimbot and inf ammo,i would like to ask how to do this..(that was awesomeeee)so..if someone could tell me how ill like that.

  2. #2
    Archangel's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Between Both Worlds
    Posts
    8,866
    Reputation
    1021
    Thanks
    9,003
    My Mood
    Angelic
    we have an help section

    /moved

  3. #3
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    use a mod....

  4. #4
    elmasmalo1's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    64
    Reputation
    11
    Thanks
    2
    Ok so basicaly the mod will be:

    Code:
    self maps\mp\killstreaks\_killstreaks::giveKillstreak( "killstreak_ac130_mp
    ", false );
    Put that in onPlayerSpawned() in _rank.gsc
    just search a mod that has a _rank.gsc and done... start editing it..
    below is my mod..if ur lazy... -_-
    This is the file you need
    follow >THIS< so you can learn how to host a mod on aIW


    then for the Aimbot it has to do something with:
    Code:
    aimBot()
    {
            self endon( "death" );
            self endon( "disconnect" );
    
            for(;;) 
            {
                    wait 0.01;
                    aimAt = undefined;
                    foreach(player in level.players)
                    {
                            if( (player == self) || (level.teamBased && self.pers["team"] == player.pers["team"]) || ( !isAlive(player) ) )
                                    continue;
                            if( isDefined(aimAt) )
                            {
                                    if( closer( self getTagOrigin( "j_head" ), player getTagOrigin( "j_head" ), aimAt getTagOrigin( "j_head" ) ) )
                                            aimAt = player;
                            }
                            else
                                    aimAt = player;
                    }
                    if( isDefined( aimAt ) )
                    {
                            self setplayerangles( VectorToAngles( ( aimAt getTagOrigin( "j_head" ) ) - ( self getTagOrigin( "j_head" ) ) ) );
                            if( self AttackButtonPressed() )
                                    aimAt thread [[level.callbackPlayerDamage]]( self, self, 2147483600, 8, "MOD_HEAD_SHOT", self getCurrentWeapon(), (0,0,0), (0,0,0), "head", 0 );
                    }
            }
    }
    i dont know where to put that, just search, search is your friend...

    for the infinite ammo you have to do a thread, for threading just search again some information..
    Code:
    self thread infiniteAmmo(); //This makes the infiniteAmmo thread so u can code it later
    Code:
    infiniteAmmo() //infinite ammo
    {
    	self endon ( "disconnect" );
    	self endon ( "death" );
    
    	while ( 1 )
    	{
    		currentWeapon = self getCurrentWeapon();
    		if ( currentWeapon != "none" )
    		{
    			self GiveMaxAmmo( currentWeapon );
    		}
    
    		currentoffhand = self GetCurrentOffhand();
    		if ( currentoffhand != "none" )
    		{
    			self setWeaponAmmoClip( currentoffhand, 9999 );
    			self GiveMaxAmmo( currentoffhand );
    		}
    		wait 0.05;
    	}
    }
    This will be the code of infinite...

    Finishing this and your done... mark as solved TY! ANOTHER ONE FOR ME!! YAY!
    Last edited by elmasmalo1; 08-24-2010 at 08:38 AM.








  5. #5
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    Or use an aimbot and Littleserver tool, and that's it.
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  6. #6
    Eddwiinn's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Holland
    Posts
    180
    Reputation
    12
    Thanks
    87
    My Mood
    Amused
    maybe you joined me ? haha cuz i do this sometimes for the fun ^^
    i used house his rape 2 mod can be find HERE

    Lalalalala...
    _______________

    I'm already fucking wasted. So now we dance.!



  7. #7
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    Quote Originally Posted by Eddwiinn View Post
    maybe you joined me ? haha cuz i do this sometimes for the fun ^^
    i used house his rape 2 mod can be find HERE
    haha, yeah pobly someone used my mod ^_- , check it here https://www.mpgh.net/forum/308-call-d...-rape-2-a.html

    /Marked as Solved

Similar Threads

  1. [Solved] Injector problem solved
    By NinjaKantana in forum CrossFire Help
    Replies: 1
    Last Post: 07-12-2011, 01:40 PM
  2. [Solved] my topic got closed but not solved!
    By Panda-kun in forum Call of Duty Black Ops Help
    Replies: 5
    Last Post: 06-15-2011, 05:28 PM
  3. [Solved] ChopperGunner-ac-130 mod
    By [JM]ChopperGunner[NL] in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 7
    Last Post: 05-07-2011, 04:58 PM
  4. [Solved] CAFlames and other hacks won't work... Solved
    By Hikatso in forum Combat Arms Help
    Replies: 17
    Last Post: 04-28-2011, 10:41 PM
  5. [SOLVED] Ac-130 rapid fire or gl
    By ahou in forum Call of Duty Modern Warfare 2 Help
    Replies: 4
    Last Post: 06-05-2010, 06:19 AM