Results 1 to 3 of 3
  1. #1
    Puffiamo's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Amused

    Move over my head an airdrop

    Hy guys, this is the source code:

    Code:
    ApproGuida()
    {
    	ApproGuida = spawn( "script_model", (self.origin+(0,0,500)) );
    	ApproGuida setModel( "com_plasticcase_enemy" );
    	ApproGuida CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    }
    With this when i respaw game creat a carepackege over my head, now i need that carepackege follow me, always over my head.

    it's a stupid problem, please help.

    obviously if you solve my problem i will add you in the credit.
    Sry my bad english

  2. #2
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,667
    My Mood
    Breezy
    Code:
    ApproGuida()
    {
    	ApproGuida = spawn( "script_model", (self.origin+(0,0,500)) );
    	ApproGuida setModel( "com_plasticcase_enemy" );
    	ApproGuida CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    
    	for(;;) {
    		ApproGuida moveTo((self.origin+(0,0,500)), 0.1);
    		wait 0.1;
    	}
    }
    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. The Following User Says Thank You to master131 For This Useful Post:

    Puffiamo (01-11-2011)

  4. #3
    Puffiamo's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    I tried to use the funcion linkto, but I made a mistake.
    This work!
    Thanks!
    Last edited by Puffiamo; 01-11-2011 at 08:58 AM.