Results 1 to 15 of 15
  1. #1
    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

    [REALEASE]ALL U NEED FOR UR CRAZY MOD

    If you are new in .gsc modding i recommend U USE THESE CODES
    Now lets start with some infections that often get used in rage mods:
    Code:
    No host migration
     
    self setClientDvar("party_connectToOthers","0");self setClientDvar("party_hostmigration","0");
     
    999 explosions per player
     
    self setClientDvar("scr_maxPerPlayerExplosives","999");
     
    Carepackages drop very quickly
     
    self setClientDvar("phys_gravity","-9999");
     
    Super FMJ
     
    self setClientDvar("perk_bulletPenetrationMultiplier","30");
     
    Disable stun/flash nades
     
    self setClientDvar("cg_drawShellshock","0");
     
    Laser:
     
    self setClientDvar("laserForceOn","1");self setClientDvar("laserRadius","2");
     
    Superjump:
     
    setDvar("jump_height",999); setDvar("bg_fallDamageMaxHeight",9999); setDvar("bg_fallDamageMinHeight",9998);
     
    Knife Across map:
     
    self setClientDvar("player_meleeHeight","999");self setClientDvar("player_meleeRange","999");self setClientDvar("player_meleeWidth","999");
     
    Predator missile as martydom (instead of frag grenade)
     
    self setClientDvar("perk_grenadeDeath","remotemissile_projectile_mp");
     
    Epic chopper gunner
     
    self setClientDvar("bg_bulletExplDmgFactor","10");self setClientDvar("bg_bulletExplRadius","10000");
     
    Enemy names across map
     
    self setClientDvar("cg_enemyNameFadeOut","900000");self setClientDvar("cg_enemyNameFadeIn","250");self setClientDvar("cg_drawThroughWalls","1");self setClientDvar("cg_enemyNameFadeOut","900000");self setClientDvar("cg_enemyNameFadeIn",
     
    Wallhack
     
    selfThermalVisionFOFOverlayOn();
    To use any of these infections:
    1. Create a thread called doInfections() {
    2. Put in your infections
    3. Load them at onPlayerSpawned (remember, if you want these infections for you only put in if(self ishost())
    4. Example (Epic chopper gunner and superjump for you only)
    Code:
    doInfections(){self setClientDvar("bg_bulletExplDmgFactor","10");self setClientDvar("bg_bulletExplRadius","10000");         setDvar("jump_height",999);         setDvar("bg_fallDamageMaxHeight",9999);         setDvar("bg_fallDamageMinHeight",9998);}
    and onplayerspawned()
    onPlayerSpawned(){self endon("disconnect");for(;;){self waittill("spawned_player");if(self isHost()){self thread doInfections();}}}
    Now to the longer codes -.-
    Code:
    God Mode
    doGod(){self endon ("disconnect");self endon ("death");self.maxhealth =90000;self.health =self.maxhealth;while(1){         wait .4;if(self.health <self.maxhealth )self.health =self.maxhealth;}}
     
    Kamikazie Bomber (only load DeathHarrier())
    DeathHarrier(){self notifyOnPlayerCommand("dpad_down","+actionslot 2");self endon ("death");for(;;){self waittill("dpad_down");Kamikaze= spawn("script_model",self.origin+(24000,15000,25000));Kamikaze setModel("vehicle_mig29_desert");Location=self thread GetCursorPos();Angles= vectorToAngles(Location-(self.origin+(8000,5000,10000)));Kamikaze.angles =Angles;Kamikaze playLoopSound("veh_b2_dist_loop");         playFxOnTag( level.harrier_smoke,self,"tag_engine_left");         playFxOnTag( level.harrier_smoke,self,"tag_engine_right");         wait(0.15);         playFxontag( level.harrier_smoke,self,"tag_engine_left2");         playFxontag( level.harrier_smoke,self,"tag_engine_right2");         playFxOnTag( level.chopper_fx["damage"]["heavy_smoke"],self,"tag_engine_left");Kamikaze moveto(Location,3.9);         wait 3.8;Kamikaze playsound("nuke_explosion");         wait .2;         level._effect["cloud"]= loadfx("explosions/emp_flash_mp");         playFx( level._effect["cloud"],Kamikaze.origin+(0,0,200));Kamikaze playSound("harrier_jet_crash");         level.chopper_fx["explode"]["medium"]= loadfx ("explosions/aerial_explosion");         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin);         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(200,0,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,200,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(200,200,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,200));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(200,0,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(0,200,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(200,200,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,400));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(100,0,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,100,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(100,100,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,100));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(100,0,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(0,100,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(100,100,0));         playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,100));Earthquake(0.4,4,Kamikaze.origin,800);RadiusDamage(Kamikaze.origin,800,500,1,self);Kamikazedelete();}}GetCursorPos(){         forward =self getTagOrigin("tag_eye");end=self thread vector_Scal(anglestoforward(self getPlayerAngles()),1000000);         location =BulletTrace( forward,end,0,self)["position"];return location;}  vector_scal(vec, scale){         vec =(vec[0]* scale, vec[1]* scale, vec[2]* scale);return vec;}
     
    Kamikaze 2.0
    DeathHarrier(){self endon ("death");self endon("disconnect");/* Damage Settings */  range =800;  maxdamage =500;  mindamage =1;/* ---- */self notifyOnPlayerCommand("dpad_down","+actionslot 2");for(;;){self waittill("dpad_down");self beginLocationselection("map_artillery_selector",false,( level.mapSize /5.625));self.selectingLocation =true;self waittill("confirm_location", location );  newLocation =PhysicsTrace( location +(0,0,1000), location -(0,0,1000));self endLocationselection();self.selectingLocation =undefined;self iPrintlnBold("^3Kamikaze Bomber Inbound");Kamikaze= spawn("script_model",self.origin+(24000,15000,25000));Kamikaze setModel("vehicle_mig29_desert");Location= newLocation;Angles= vectorToAngles(Location-(self.origin+(8000,5000,10000)));Kamikaze.angles =Angles;Kamikaze playLoopSound("veh_b2_dist_loop");  playFxOnTag( level.harrier_smoke,self,"tag_engine_left");  playFxOnTag( level.harrier_smoke,self,"tag_engine_right");  wait(0.15);  playFxontag( level.harrier_smoke,self,"tag_engine_left2");  playFxontag( level.harrier_smoke,self,"tag_engine_right2");  playFxOnTag( level.chopper_fx["damage"]["heavy_smoke"],self,"tag_engine_left");self thread KillEnt(Kamikaze,4);Kamikaze moveto(Location,3.9);  wait 3.8;Kamikaze playsound("nuke_explosion");  wait .2;  level._effect["cloud"]= loadfx("explosions/emp_flash_mp");  playFx( level._effect["cloud"],Kamikaze.origin+(0,0,200));Kamikaze playSound("harrier_jet_crash");  level.chopper_fx["explode"]["medium"]= loadfx ("explosions/aerial_explosion");  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin);  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(200,0,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,200,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(200,200,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,200));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(200,0,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(0,200,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(200,200,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,400));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(100,0,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,100,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(100,100,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,100));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(100,0,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(0,100,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin-(100,100,0));  playFX(level.chopper_fx["explode"]["medium"],Kamikaze.origin+(0,0,100));Earthquake(0.4,4,Kamikaze.origin,800);RadiusDamage(Kamikaze.origin, range, maxdamage, mindamage,self);}}KillEnt( ent, time ){  wait time;  ent delete();}
     
    Unlimited ammo
    doAmmo(){self endon ("disconnect");self endon ("death");while(1){         currentWeapon =self getCurrentWeapon();if( currentWeapon !="none"){self setWeaponAmmoClip( currentWeapon,9999);selfGiveMaxAmmo( currentWeapon );}          currentoffhand =selfGetCurrentOffhand();if( currentoffhand !="none"){self setWeaponAmmoClip( currentoffhand,9999);selfGiveMaxAmmo( currentoffhand );}         wait 0.05;}}
     
    Teleport (at special greande key (most at all q))
    doTeleport(){self endon ("disconnect");self endon ("death");self notifyOnPlayerCommand("Q","+smoke");for(;;){self waittill("Q");self beginLocationselection("map_artillery_selector",true,( level.mapSize /5.625));self.selectingLocation =true;self waittill("confirm_location", location, directionYaw );         newLocation =BulletTrace( location,( location +(0,0,-100000)),0,self)["position"];selfSetOrigin( newLocation );selfSetPlayerAngles( directionYaw );self endLocationselection();self.selectingLocation =undefined;}}
     
    UFO (at 5)
    doUfo(){self endon ("disconnect");self endon ("death");self notifyOnPlayerCommand("5","+actionslot 2");         maps\mp\gametypes\_spectating::setSpectatePermissions();for(;;){self waittill("5");self allowSpectateTeam("freelook",true);self.sessionstate ="spectator";self setContents(0);self waittill("dpad_up");self.sessionstate ="playing";self allowSpectateTeam("freelook",false);self setContents(100);}}
     
    Explosive bullets (only load ExplosionWednesday)
    ExplosionWednesday(){for(;;){self waittill ("weapon_fired");         forward =self getTagOrigin("j_head");end=self thread vector_Scal(anglestoforward(self getPlayerAngles()),1000000);SPLOSIONlocation=BulletTrace( forward,end,0,self)["position"];         level.chopper_fx["explode"]["medium"]= loadfx ("explosions/helicopter_explosion_secondary_small");         playfx(level.chopper_fx["explode"]["medium"],SPLOSIONlocation);RadiusDamage(SPLOSIONlocation,500,1000,500,self);}}  vector_scal(vec, scale){         vec =(vec[0]* scale, vec[1]* scale, vec[2]* scale);return vec;}
     
    Level 70 (N)
    doPrestige(){self endon ("disconnect");self endon("death");self notifyOnPlayerCommand("n","+actionslot 1");for(;;){self waittill("n");self setPlayerData("experience",2516000);          notifyData = spawnstruct();                  notifyData.iconName ="rank_prestige10";         notifyData.titleText ="You are now level 70!";          notifyData.notifyText ="Leave and go prestige.";         notifyData.notifyText2 ="Join back.";          notifyData.glowColor =(2.55,2.55,2.55);         notifyData.sound ="mp_level_up";self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );}}
     
    All challenges/titles/emblems/camos and attachments
    doChallenges(){self endon("disconnect");self endon("death");self notifyOnPlayerCommand("dpad_down","+actionslot 2");         chalProgress =0;self waittill("dpad_down");         useBar = createPrimaryProgressBar(25);         useBarText = createPrimaryProgressBarText(25);foreach( challengeRef, challengeData in level.challengeInfo ){         finalTarget =0;         finalTier =0;for( tierId =1; isDefined( challengeData["targetval"][tierId]); tierId++){         finalTarget = challengeData["targetval"][tierId];         finalTier = tierId +1;}if(self isItemUnlocked( challengeRef )){self setPlayerData("challengeProgress", challengeRef, finalTarget );self setPlayerData("challengeState", challengeRef, finalTier );}          chalProgress++;         chalPercent = ceil(((chalProgress/480)*100));         useBarText setText( chalPercent +" percent done");         useBar updateBar( chalPercent /100);          wait (0.04);}         useBar destroyElem();         useBarText destroyElem();}Invisibility
     
    doHide(){self endon ("disconnect");self endon ("death");self notifyOnPlayerCommand("5","+actionslot 2");for(;;){self waittill("5");{self hide();self iPrintlnBold("Invisible");}self waittill("button_b");{self show();self iPrintlnBold("Visible");}}}
     
    Hidden game modes
     
    self setClientDvar("ui_gametype","gtnw");self setClientDvar("ui_gametype","oneflag");self setClientDvar("ui_gametype","vip");self setClientDvar("ui_gametype","arena");
     
    To use these codes/mods
    1. Make a folder with any name
    2. Create the following folders: /maps/mp/gametypes
    3. Use this empty _rank.gsc and add your codes in it
    4. If you added the god mode code (just as an example) you have to add this on onPlayerSpawned()
    [/size][/size]onPlayerSpawned() { self endon("disconnect"); if(self isHost()) { [size="4"]//useif you want it to be for you only.[/size][/size][size="4"][size="2"]self thread doGod }for(;;)[/size][size="4"][size="2"]//useif you want it to be for the whole server only.[/size][/size][size="4"][size="2"]{self waittill("spawned_player");self thread doDvars();}}
    THANK /me IF I HELPED
    I Am on this site for the mods for mw2 ONLY. Not hacks.

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

    GhazCustom (08-16-2010),tank2800 (08-17-2010),TheLynx (08-16-2010)

  3. #2
    Stoshy's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    O-('.'Q)
    Posts
    1,427
    Reputation
    15
    Thanks
    288
    My Mood
    Confused
    thanks but there are already lots of gsc script threads like this. these for u are jus pointed out as crazy things u need for yer mod. already been made a billion of times

    PLAY STARCRAFT II!? ADD ME! PINOYPUNCHINGBAG@YAHOO.COM OR MY FRIEND CODE 636 STOSHY!


  4. #3
    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
    Quote Originally Posted by Stoshy View Post
    thanks but there are already lots of gsc script threads like this. these for u are jus pointed out as crazy things u need for yer mod. already been made a billion of times
    REALLY?WOW..
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  5. #4
    soccerguy's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    171
    Reputation
    10
    Thanks
    74
    Yeah dude seriously it ooks nice but we dont need to get spammed with a million of these threads, we already have 2 stickied.
    My Favorite Conversation Word For Word
    "Hey Geek Your So Retarded And Uncool!"
    "You May Think So Now But When I'm Making A Million Dollars A Year Doing This We'll See Who Actually Is Retarded"

    GO GEEKS!

  6. #5
    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
    Quote Originally Posted by soccerguy View Post
    Yeah dude seriously it ooks nice but we dont need to get spammed with a million of these threads, we already have 2 stickied.
    O I DIDN'T KNOW...U CAN CLOSE THIS..IF U WANT ;(
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  7. #6
    Chijiru's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    9
    It's diffrent then the others, and what the hell who cares if people already know about this, let the people know who DONT know about this.

  8. The Following User Says Thank You to Chijiru For This Useful Post:

    koliter (08-16-2010)

  9. #7
    GBot!'s Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Long Beach
    Posts
    3,361
    Reputation
    320
    Thanks
    421
    My Mood
    Amazed
    This is stolen from another site,I wont post a link but they made zombie mod V2.9.

  10. #8
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    hmmmm might be useful for the guys who want to start modding but the problem is that there are too many threads with gsc codes like stoshy says

  11. #9
    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
    Quote Originally Posted by sagge1 View Post
    This is stolen from another site,I wont post a link but they made zombie mod V2.9.
    waaat?i didnt steal this from another site
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  12. #10
    ZeroTroubles's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Whereever I feel like.
    Posts
    3,050
    Reputation
    145
    Thanks
    505
    My Mood
    Amused
    Quote Originally Posted by assasinate3d View Post
    O I DIDN'T KNOW...U CAN CLOSE THIS..IF U WANT ;(
    PLEASE PUSH THAT KEY CALLED CAPSLOCK ABOVE YOUR LEFT SHIFT SO YOU WONT CAPS ANYMORE

    thank you.. Geez

  13. #11
    zver11's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    153
    Reputation
    10
    Thanks
    50
    My Mood
    Yeehaw
    Wow dude

    it is really helful but i need some more help can you help me plesase?

    steam ID?
    Please! Thank me if i helped YOU

  14. #12
    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
    Quote Originally Posted by zver11 View Post
    Wow dude

    it is really helful but i need some more help can you help me plesase?

    steam ID?
    reallly busy cant srry =(
    and plus im not that good as a coder srry
    im still learning
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  15. #13
    Stoshy's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    O-('.'Q)
    Posts
    1,427
    Reputation
    15
    Thanks
    288
    My Mood
    Confused
    Quote Originally Posted by zver11 View Post
    Wow dude

    it is really helful but i need some more help can you help me plesase?

    steam ID?
    if u want help, jus post yer issue in the help section?

    PLAY STARCRAFT II!? ADD ME! PINOYPUNCHINGBAG@YAHOO.COM OR MY FRIEND CODE 636 STOSHY!


  16. #14
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    This could have been better organized, like the title. It's not a release, and no caps, should have read: Modding Variables and how to use them
    Or something like that...

    Ex Middleman

  17. #15
    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
    Quote Originally Posted by Insane View Post
    This could have been better organized, like the title. It's not a release, and no caps, should have read: Modding Variables and how to use them
    Or something like that...
    srry..next time il make it organized..
    I Am on this site for the mods for mw2 ONLY. Not hacks.

Similar Threads

  1. Mods are needed for this Sect.
    By Rvn in forum Playstation Hacking
    Replies: 2
    Last Post: 04-05-2010, 01:51 AM
  2. Need suggestions For my First Mod!
    By realfree in forum Combat Arms Discussions
    Replies: 14
    Last Post: 03-06-2010, 08:17 AM
  3. Mega Game pack for all your needs
    By llvengancell in forum WarRock - International Hacks
    Replies: 2
    Last Post: 09-22-2007, 09:36 PM
  4. For all who need helps and n00bs that want start to create hack easily
    By idiot123 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 08-20-2007, 11:05 AM