Results 1 to 3 of 3

Hybrid View

  1. #1
    CainFool's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    313
    Reputation
    11
    Thanks
    146
    My Mood
    Angelic

    Use map_artillery_selector

    Code:
    makeArtillery()
    {
        self endon("disconnect");
        self endon("death");
            wait 1; //wait 50 minutes to enable
            self notifyOnPlayerCommand( "dpad_down", "+actionslot 3" );
           
     
            self waittill("dpad_down");
            self beginLocationSelection( "map_artillery_selector", true, ( level.mapSize / 5.625 ) );
            self.selectingLocation = true;
            self waittill( "confirm_location", location, directionYaw );
            HavyArtillery = BulletTrace( location, ( location + ( 0, 0, -100000 ) ), 0, self )[ "position" ];
     
     
            self endLocationSelection();
            self.selectingLocation = undefined;
            self thread maps\mp\gametypes\_hud_message::hintMessage("^2Deadly Airstrike inbound!");
            self thread maps\mp\gametypes\_hud_message::hintMessage("^2Created by ^1CainFoool -host-");
     
            //HavyArtillery = self thread GetCursorPos();
            
            HavyArtillery2 = HavyArtillery+(0, 0, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 2;
            
            HavyArtillery2 = HavyArtillery+(100, 70, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 1;
            
            HavyArtillery2 = HavyArtillery+(90, 80, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 1;
            
            HavyArtillery2 = HavyArtillery+(-70, -30, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 1;
            
            HavyArtillery2 = HavyArtillery+(-100, -100, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 1;
            
            HavyArtillery2 = HavyArtillery+(-150, -60, 8000);
            MagicBullet( "ac130_105mm_mp", HavyArtillery2, HavyArtillery2-(0, 0, 8000), self );
            wait 1;
    }
    How do I use that MORE than once?

    After I use it once I can not use it again, even after I die.

  2. #2
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,668
    My Mood
    Breezy
    Make sure that
    player thread makeArtillery();
    is under onPlayerSpawned()
    otherwise you can't repeat it when you die.
    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]

  3. #3
    CainFool's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    313
    Reputation
    11
    Thanks
    146
    My Mood
    Angelic
    Quote Originally Posted by master131 View Post
    Make sure that
    player thread makeArtillery();
    is under onPlayerSpawned()
    otherwise you can't repeat it when you die.
    I have
    self thread makeArtillery();

    does it matter?

Similar Threads

  1. Guide On Using Olly Debugger
    By Dave84311 in forum Game Hacking Tutorials
    Replies: 1
    Last Post: 12-14-2013, 11:12 PM
  2. How to Use Tsearch
    By wardo1926 in forum Hack Requests
    Replies: 5
    Last Post: 12-18-2007, 09:24 PM
  3. How To Use A Render By Phate
    By Paolo1993 in forum Tutorials
    Replies: 0
    Last Post: 01-27-2006, 08:03 PM
  4. Use your xbox as a computer!
    By Dave84311 in forum General
    Replies: 2
    Last Post: 01-15-2006, 01:25 PM
  5. Beginner Guide to using T-Search
    By arunforce in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 01-02-2006, 08:13 PM