You are viewing our Forum Archives. To view or take place in current topics click here.
just got jtag if anyone sends me mw2 modded files ill vip u
Posted:

just got jtag if anyone sends me mw2 modded files ill vip uPosted:

bestshotty1
  • New Member
Status: Offline
Joined: May 29, 201014Year Member
Posts: 26
Reputation Power: 1
Status: Offline
Joined: May 29, 201014Year Member
Posts: 26
Reputation Power: 1
my email hughestristan99 @ yahoo.com i need mod patch default and code post
#2. Posted:
ItzJesusDawg
  • New Member
Status: Offline
Joined: Mar 29, 201014Year Member
Posts: 23
Reputation Power: 0
Status: Offline
Joined: Mar 29, 201014Year Member
Posts: 23
Reputation Power: 0
I got one i can customize it for you 2
#3. Posted:
-Patra-
  • Wise One
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 528
Reputation Power: 20
Status: Offline
Joined: Mar 13, 201014Year Member
Posts: 528
Reputation Power: 20
[ Register or Signin to view external links. ] my gt is patraa
#4. Posted:
MrAngryPants
  • Prospect
Status: Offline
Joined: Sep 21, 200914Year Member
Posts: 630
Reputation Power: 126
Status: Offline
Joined: Sep 21, 200914Year Member
Posts: 630
Reputation Power: 126
Ha. Sure.
Ill show ya how to set it up if ya want.
#5. Posted:
AssumedPro
  • Resident Elite
Status: Offline
Joined: Jun 07, 201014Year Member
Posts: 296
Reputation Power: 12
Status: Offline
Joined: Jun 07, 201014Year Member
Posts: 296
Reputation Power: 12
All codes tested by Chocolate , And tested some myself

(These are the ones I haven't posted before here)

Give Weapons:


PHP Code:
self _giveWeapon("deserteaglegold_mp", 0);//Give the Gold Deagle
self _giveWeapon("defaultweapon_mp", 0);// Give the Default Weapon
self _giveWeapon("fal_akimbo_mp", 0);// Give the FAL Akimbos.
self _giveWeapon("m79_akimbo_mp", 0);// Give the Thumper Akimbos.
self _giveWeapon("flare_mp", 0);// Give The Tac Insertion Tube

This Code is my favourite as if you read the weapons , They're pretty sweet.

Write Text On Screen (small, bold):


PHP Code:
self iPrintlnBold("Text here");// You can color text the same way as you do your gamertag IE: "^1HI!" is HI!

Write Text On Screen (left side or where you see where people are killed):

PHP Code:
self iPrintln("Text Here");

These next codes disable all kinds of things and can be edited very easily, You can read the code and see what they are:


PHP Code:
allowJump(false);
allowSprint(false);
allowADS(false);
allowStand(false);
allowCrouch(false);

Disable Using Weapons:


PHP Code:
self _disableWeapon();
self _disableOffhandWeapons();

Mabye my second favourite , Any killstreak you want at the start of a game. This is also easily edited

Give Any Killstreak At Spawn:


PHP Code:
self mapsmpkillstreaks_killstreaks::giveKillstreak( "ac130", false );//give AC130
self mapsmpkillstreaks_killstreaks::giveKillstreak( "sentry", false );// give Sentry Airdrop
self mapsmpkillstreaks_killstreaks::giveKillstreak( "emp", false );// give EMP
self mapsmpkillstreaks_killstreaks::giveKillstreak( "nuke", false );// give Nuke

MODList© eg. Give the mods to the people you want


PHP Code:
if(self.name == "Gamertag Here")
{

// if you want more then one:

if(self.name == "blah"
|| self.name == "other"
|| self.name == "blah2")
{ // do as many ||'s you want.

// if you want to put mods or commands for people who DONT have the mod:

if(self.name == "GT"
|| self.name == "GT2")
{
//mods here
}
else
{
// people NOT on the list mods/commands here
}

Last but not least , NO Recoil!


PHP Code:
self player_recoilScaleOn(0);
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.