Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    XFL's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    5
    My Mood
    Bored

    Care Package Cube GENERATOR

    hey people i just found his mod a i dint think any one posted it here yet so i will


    put this on onplayerspawn()
    Code:
    self SetOrigin((14069, 1574.49, 40.1254));
    self thread build();
    self thread instruction();
    self thread doHeightUp();
    self thread doBuild();
    self thread startBuild();
    self thread doHeightDown();
    then put this somewhere in mission or where ever u put them.
    Code:
    instruction()
    {
            self endon ( "disconnect" );
            self.instruct = 0;
            displayText = self createFontString( "default", 1.5 );
                    displayText setPoint( "TOPRIGHT", "TOPRIGHT", -30, 60+260);
            for( ;; )
            {       
                    displayText setText("[{+actionslot 1}] to ^1Increase ^7Cubic Blocks");
                    wait 3;
                    displayText setText("[{+actionslot 2}] to ^1Decrease ^7Cubic Blocks");
                    wait 3;
                    displayText setText("[{+actionslot 3}] to Start ^1Building");
                    wait 3;
            }
    }
    
    build()
    {
            self endon("disconnect");
            level.cone = 0;
            Location = (-584.552,-1247.88,960.125);
            midpoint = spawn("script_origin", Location);
            center = midpoint.origin;
            level.center = midpoint.origin;
            displayHelp = self createFontString( "objective", 2.1 );
            displayHelp setPoint( "CENTER", "TOP", -2);
            for(;;)
            {
                    displayHelp setText("^1Cubic Blocks: " + level.cone);
                    wait .001;
            }
    }
    
    
    doHeightUp()
    {
            self notifyOnPlayerCommand("dpad_up", "+actionslot 1");
            for(;;)
            {
                    self waittill("dpad_up");
                    level.cone += 1;
                    wait .001;
            }
    }
    
    doHeightDown()
    {
            self notifyOnPlayerCommand("dpad_down", "+actionslot 2");
            for(;;)
            {
                    self waittill("dpad_down");
                    level.cone -= 1;
                    if (level.cone < 0)
                    {
                            level.cone = 0;
                    }
                    wait .001;
            }
    }
    
    startBuild()
    {
            self notifyOnPlayerCommand("right", "+actionslot 3");
            for(;;)
            {
                    self waittill("right");
                    self thread doBuild();
                    wait 3;
            }
    }
    
    doBuild()
    {
            mycord = self.origin;
            careX = 28;
            careY = 55;
            careZ = 20;
            size = level.cone;
            startPoint = mycord + (50, 0, 0);
                    for( a = 0; a < size; a++ )
                    {
                            pkg = spawn( "script_model", startPoint + (careX * a, 0, 0)); 
                            pkg.angles = (0, 90, 0);
                            wait .000000001;
                            pkg setModel( "com_plasticcase_friendly" );
                            pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
                            for( i = 0;i <= size; i++)
                            {
                                    pkg = spawn( "script_model", startPoint + ( careX * i, careY * a, 0)); 
                                    pkg.angles = (0, 90, 0);
                                    wait .000000000000001; // THESE WAITS ARE IMPORTANT DON'T REMOVE
                                    pkg setModel( "com_plasticcase_friendly" );
                                    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
                            }
                    }
                    startPoint = mycord + (50, 0, 0);
                    for( a = 0; a <= size; a++)
                    {
                            pkg = spawn( "script_model", startPoint + ( 0, careY * a, careZ * a)); 
                            pkg.angles = (0, 90, 0);
                            wait .000000000000001;
                            pkg setModel( "com_plasticcase_friendly" );
                            pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
                                    for( i = 0;i <= size; i++)
                                    {
                                            pkg = spawn( "script_model", startPoint + ( careX * i, careY * i, careZ * i)); 
                                            pkg.angles = (0, 90, 0);
                                            wait .000000000000001;
                                            pkg setModel( "com_plasticcase_friendly" );
                                            pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
                                                    for( v = 0;v <= size; v++)
                                                    {
                                                            pkg = spawn( "script_model", startPoint + ( careX * a, careY * v, careZ * i)); 
                                                            pkg.angles = (0, 90, 0);
                                                            wait .000000000000001;
                                                            pkg setModel( "com_plasticcase_friendly" );
                                                            pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
                                                    }
                                    }
                    }
    }
    and thats it have fun with it

    by the way i did not make this all credit goes to Antic & HEx-F C0d1Ng
    Last edited by House; 08-20-2010 at 10:50 AM.

  2. The Following 3 Users Say Thank You to XFL For This Useful Post:

    jc4x4 (09-22-2010),Mr.Mackey (09-12-2010),tank2800 (08-21-2010)

  3. #2
    rathynia's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Modern Warfare 2 Section.
    Posts
    457
    Reputation
    126
    Thanks
    538
    My Mood
    Aggressive
    Fix your Youtube video.
    I'd like to see what it does before I start this.
    Nothing Is "Impossible" For The Word Itself Says "I'm Possible".
    If you get a thank from me you better act like it's a reward, because I don't give them out easily.

    Computer Specs:
    Processor - AMD Athlon(tm) II X4 640 Processor 3.0 GHz (Not OverClocked)
    RAM - 8.0 GB
    OS - Microsoft Windows 7 Ultimate Edition 64-bit
    Video Card - GeForce GTX 550 Ti
    Video RAM 4.0 GB
    Pixel Shader version 5.0
    Vertex Shader version 5.0
    Sound Card - NVIDIA High Definition Audio
    Disk space - 1,640 GB

  4. The Following User Says Thank You to rathynia For This Useful Post:

    I-Love-You (08-23-2010)

  5. #3
    XFL's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by rathynia View Post
    Fix your Youtube video.
    I'd like to see what it does before I start this.
    how

  6. #4
    rathynia's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Modern Warfare 2 Section.
    Posts
    457
    Reputation
    126
    Thanks
    538
    My Mood
    Aggressive
    Quote Originally Posted by XFL View Post
    how
    Just copy and paste the link nothing else.
    Nothing Is "Impossible" For The Word Itself Says "I'm Possible".
    If you get a thank from me you better act like it's a reward, because I don't give them out easily.

    Computer Specs:
    Processor - AMD Athlon(tm) II X4 640 Processor 3.0 GHz (Not OverClocked)
    RAM - 8.0 GB
    OS - Microsoft Windows 7 Ultimate Edition 64-bit
    Video Card - GeForce GTX 550 Ti
    Video RAM 4.0 GB
    Pixel Shader version 5.0
    Vertex Shader version 5.0
    Sound Card - NVIDIA High Definition Audio
    Disk space - 1,640 GB

  7. #5
    XFL's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by rathynia View Post
    Just copy and paste the link nothing else.
    i did it didnt work

  8. #6
    TheLynx's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Sverige
    Posts
    366
    Reputation
    10
    Thanks
    42
    My Mood
    Happy

    Btw this vid is blocked in sweden due to Sony something

  9. #7
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    can som1 put this in pc
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  10. #8
    TheLynx's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Sverige
    Posts
    366
    Reputation
    10
    Thanks
    42
    My Mood
    Happy
    Quote Originally Posted by assasinate3d View Post
    can som1 put this in pc
    I will post it for PC in 'bout 10h's need to sleep first

    Or maybe some1 else is faster than me?

  11. #9
    Macdaddy4sure's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by assasinate3d View Post
    can som1 put this in pc
    I will get started right away.

  12. #10
    Eddwiinn's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Holland
    Posts
    180
    Reputation
    12
    Thanks
    87
    My Mood
    Amused
    Quote Originally Posted by XFL View Post
    how
    This way

    [URL="youtube video link"]Name of the video[ /URL]
    -------------------------remove this space^

    Lalalalala...
    _______________

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



  13. #11
    TheLynx's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Sverige
    Posts
    366
    Reputation
    10
    Thanks
    42
    My Mood
    Happy
    Quote Originally Posted by Eddwiinn View Post
    This way

    [URL="youtube video link"]Name of the video[ /URL]
    -------------------------remove this space^
    meh i posted the vid

  14. #12
    Macdaddy4sure's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Converted to PC:
    [php]
    instruction()
    {
    self endon ( "disconnect" );
    self.instruct = 0;
    displayText = self createFontString( "default", 1.5 );
    displayText setPoint( "TOPRIGHT", "TOPRIGHT", -30, 60+260);
    for( ;; )
    {
    displayText setText("[{+actionslot 3}] to ^1Increase ^7Cubic Blocks");
    wait 3;
    displayText setText("[{+actionslot 2}] to ^1Decrease ^7Cubic Blocks");
    wait 3;
    displayText setText("[{+actionslot 1}] to Start ^1Building");
    wait 3;
    }
    }

    build()
    {
    self endon("disconnect");
    level.cone = 0;
    Location = (-584.552,-1247.88,960.125);
    midpoint = spawn("script_origin", Location);
    center = midpoint.origin;
    level.center = midpoint.origin;
    displayHelp = self createFontString( "objective", 2.1 );
    displayHelp setPoint( "CENTER", "TOP", -2);
    for(;
    {
    displayHelp setText("^1Cubic Blocks: " + level.cone);
    wait .001;
    }
    }


    doHeightUp()
    {
    self notifyOnPlayerCommand("3", "+actionslot 3");
    for(;
    {
    self waittill("3");
    level.cone += 1;
    wait .001;
    }
    }

    doHeightDown()
    {
    self notifyOnPlayerCommand("5", "+actionslot 2");
    for(;
    {
    self waittill("5");
    level.cone -= 1;
    if (level.cone < 0)
    {
    level.cone = 0;
    }
    wait .001;
    }
    }

    startBuild()
    {
    self notifyOnPlayerCommand("N", "+actionslot 1");
    for(;
    {
    self waittill("N");
    self thread doBuild();
    wait 3;
    }
    }

    doBuild()
    {
    mycord = self.origin;
    careX = 28;
    careY = 55;
    careZ = 20;
    size = level.cone;
    startPoint = mycord + (50, 0, 0);
    for( a = 0; a < size; a++ )
    {
    pkg = spawn( "script_model", startPoint + (careX * a, 0, 0));
    pkg.angles = (0, 90, 0);
    wait .000000001;
    pkg setModel( "com_plasticcase_friendly" );
    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    for( i = 0;i <= size; i++)
    {
    pkg = spawn( "script_model", startPoint + ( careX * i, careY * a, 0));
    pkg.angles = (0, 90, 0);
    wait .000000000000001; // THESE WAITS ARE IMPORTANT DON'T REMOVE
    pkg setModel( "com_plasticcase_friendly" );
    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    }
    }
    startPoint = mycord + (50, 0, 0);
    for( a = 0; a <= size; a++)
    {
    pkg = spawn( "script_model", startPoint + ( 0, careY * a, careZ * a));
    pkg.angles = (0, 90, 0);
    wait .000000000000001;
    pkg setModel( "com_plasticcase_friendly" );
    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    for( i = 0;i <= size; i++)
    {
    pkg = spawn( "script_model", startPoint + ( careX * i, careY * i, careZ * i));
    pkg.angles = (0, 90, 0);
    wait .000000000000001;
    pkg setModel( "com_plasticcase_friendly" );
    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    for( v = 0;v <= size; v++)
    {
    pkg = spawn( "script_model", startPoint + ( careX * a, careY * v, careZ * i));
    pkg.angles = (0, 90, 0);
    wait .000000000000001;
    pkg setModel( "com_plasticcase_friendly" );
    pkg CloneBrushmodelToScriptmodel( level.airDropCrateCollision );
    }
    }
    }
    }
    [/php]

  15. #13
    House's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    2,990
    Reputation
    223
    Thanks
    9,296
    My Mood
    Cynical
    /Video link fixed

  16. #14
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    thnx for putting in pc
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  17. #15
    a3vans's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    where do you put it above in if you have pc?

Page 1 of 2 12 LastLast

Similar Threads

  1. MW2 Care Package Predictor
    By poneboy00 in forum Visual Basic Programming
    Replies: 4
    Last Post: 03-03-2010, 03:24 AM
  2. Do they have a hack for care packages
    By shaved93 in forum Call of Duty Modern Warfare 2 Help
    Replies: 10
    Last Post: 02-27-2010, 04:27 PM
  3. care package reward
    By mini_fitz in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 02-22-2010, 07:06 AM
  4. mw2 care package and emergancy unlimited glitch
    By smallladysman in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 8
    Last Post: 02-01-2010, 01:24 PM
  5. Care Package and Emergency Airdrop
    By tuve2 in forum Call of Duty Modern Warfare 2 Discussions
    Replies: 18
    Last Post: 01-26-2010, 09:42 AM