Results 1 to 15 of 15
  1. #1
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine

    Make killstreaks fire at models.

    In No Hope: AI Zombies the zombies are reffered as models, so helicopters and pave lows dont attack it. Does anyone know how to let killstreaks attack models?

  2. #2
    YuDi21's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    mp_complex
    Posts
    141
    Reputation
    12
    Thanks
    35
    My Mood
    Angelic
    in cod4 mod- Alpha xl15 if file mod.ff file helicopter.gsc, targeting metod, but im tried this, hm
    Unknown Func

  3. #3
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    2 Weeks Ago

    Lol i've already thrown away the mod cuz it was impossible to let those fucking helicopters fire at them.

  4. #4
    YuDi21's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    mp_complex
    Posts
    141
    Reputation
    12
    Thanks
    35
    My Mood
    Angelic
    work!!! in file copter.gsc, targets!
    players = level.players
    change to
    for( h = 0; h < level.BotsForWave; h++ )
    {
    players = level.bots[h];
    }

    my metod =)

  5. The Following User Says Thank You to YuDi21 For This Useful Post:

    Shucker (01-10-2011)

  6. #5
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by YuDi21 View Post
    work!!! in file copter.gsc, targets!
    players = level.players
    change to
    for( h = 0; h < level.BotsForWave; h++ )
    {
    players = level.bots[h];
    }

    my metod =)
    OMFG, JUST WHEN I DELETED THE FUCKING MOD OHH IM SO FUCKING PISSED RIGHT NOW>>>!!!!! RIIIGHHTTT NOOOOOWWWWWWWWWW


    EDIT: Wait it doesn't work -.-;
    Last edited by Shucker; 01-10-2011 at 02:07 PM.

  7. #6
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    It could work. That's what I thought you could do when I first saw this thread but it was old so

    Inside _helicopter.gsc line 596, replace with this:
    Code:
            foreach ( player in level.BotsForWave )
            {
                    if ( !isDefined ( player ) )
                            continue;
    
                    if ( !isDefined ( player.crate1.health ) )
                            continue;
    
                    if ( player.crate1.health <= 0 )
                            continue;
    
                    if ( !bulletTracePassed( player.origin, player.origin + (0,0,2048), false, player ) )
                            continue;
                           
                    player.remoteHeliDist = 0;
                    validEnemies[validEnemies.size] = player;              
            }
    Last edited by master131; 01-10-2011 at 03:46 PM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  8. The Following 2 Users Say Thank You to master131 For This Useful Post:

    Shucker (01-10-2011),YuDi21 (01-14-2011)

  9. #7
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Imma try it, thx.

    EDIT: Nope it doesn't work
    Last edited by Shucker; 01-11-2011 at 07:51 AM.

  10. #8
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Hmm, I'm not sure... sorry.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  11. #9
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Maybe it has to be something with the targetting algorithim or the isAlive function? Sorry i'm not a pro coder.

    EDIT:

    Script currently looks like this
    https://pastebin.com/0QHiQEVH
    Last edited by Shucker; 01-12-2011 at 10:54 AM.

  12. #10
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Ugh, just realised that, _helicopter.gsc was for chopper gunner.
    Go back to _copter.gsc at line 170 and replace with this:
    Code:
    		if (self.team != "neutral") {
    			for (i = 0; i < level.BotsForWave.size; i++) {
    				if (isDefined(level.BotsForWave[i]) && isDefined(level.BotsForWave[i].crate1.health) && level.BotsForWave[i].health > 0) {
    					playerorigin = level.BotsForWave[i].origin;
    					playerorigin = (playerorigin[0], playerorigin[1], self.areaEnt.origin[2]);
    					if (distance(playerorigin, self.areaEnt.origin) < self.areaEnt.radius)
    						enemyTargets[enemyTargets.size] = level.BotsForWave[i];
    				}
    			}
    		}
    Do the same for line 280.
    Last edited by master131; 01-13-2011 at 08:17 AM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  13. The Following User Says Thank You to master131 For This Useful Post:

    YuDi21 (01-14-2011)

  14. #11
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by master131 View Post
    Ugh, just realised that this was for chopper gunner.
    LOL. So you figured something out?

    Nope, still not working >

    Tried putting _copter.gsc in maps/mp/killstreaks & maps/mp/gametypes
    but it still doesn't work. (i deleted _helicopter.gsc)

    _copter.gsc:
    init() { level.coptermodel = "vehicle_cobra_hel

    Sorry for bothering you so much
    Last edited by JamesA1994; 01-13-2011 at 07:41 PM. Reason: Double posted.

  15. #12
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Well I tried my best and can't seem to find another way to do this.... Sorry I couldn't help.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  16. The Following User Says Thank You to master131 For This Useful Post:

    Shucker (01-13-2011)

  17. #13
    JamesA1994's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    The dark side
    Posts
    1,703
    Reputation
    271
    Thanks
    529
    My Mood
    Psychedelic
    @Schucker Next time use the edit button.
    /Posts merged.
    CoD Minion: Jan 13th 2011 to April 11 2011
    MMORPG Minion Since: March 28th 2011 to April 11 2011

    Don't be afraid to rep, you aren't loosing anything!
    Don't forget your P&Q's. Press the thanks button if someone has helped.
    jamesa1994@hotmail.com

  18. #14
    Shucker's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    442
    Reputation
    16
    Thanks
    311
    My Mood
    Fine
    Quote Originally Posted by master131 View Post
    Well I tried my best and can't seem to find another way to do this.... Sorry I couldn't help.

    Well thanks for everyone's effort, well apperciated. /request close

  19. #15
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    /closed on request
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]