ItsMods

Full Version: [GSC] All Weapon/Camo/Perk/Killstreak Names
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
How to get the carepackage when saying !cp ? (carepackage_assault)
Also, really usefull this, used this over 100 times already Smile
Uhm I look in the list, but I can't find the good name for the L86 LSW.
Does someone know the iw5_ name?
Thanks in advance
(12-23-2012, 17:49)99IRock Wrote: [ -> ]Also, really usefull this, used this over 100 times already Smile
Uhm I look in the list, but I can't find the good name for the L86 LSW.
Does someone know the iw5_ name?
Thanks in advance

iw5_sa80_mp I think
(12-23-2012, 18:04)8q4s8 Wrote: [ -> ]
(12-23-2012, 17:49)99IRock Wrote: [ -> ]Also, really usefull this, used this over 100 times already Smile
Uhm I look in the list, but I can't find the good name for the L86 LSW.
Does someone know the iw5_ name?
Thanks in advance

iw5_sa80_mp I think

Yep I tryed that one even before you said it xD, and it was right thanks.
Kinda wierd when the name is L86 that it is sa80 0.o.
But thank you.

And then my other question, is there somehow an attachment rapidfire ?
(12-23-2012, 22:04)99IRock Wrote: [ -> ]
(12-23-2012, 18:04)8q4s8 Wrote: [ -> ]
(12-23-2012, 17:49)99IRock Wrote: [ -> ]Also, really usefull this, used this over 100 times already Smile
Uhm I look in the list, but I can't find the good name for the L86 LSW.
Does someone know the iw5_ name?
Thanks in advance

iw5_sa80_mp I think

Yep I tryed that one even before you said it xD, and it was right thanks.
Kinda wierd when the name is L86 that it is sa80 0.o.
But thank you.

And then my other question, is there somehow an attachment rapidfire ?

I'm not sure but i think it's iw5_sa80_mp_rof
(12-23-2012, 22:37)8q4s8 Wrote: [ -> ]
(12-23-2012, 22:04)99IRock Wrote: [ -> ]
(12-23-2012, 18:04)8q4s8 Wrote: [ -> ]
(12-23-2012, 17:49)99IRock Wrote: [ -> ]Also, really usefull this, used this over 100 times already Smile
Uhm I look in the list, but I can't find the good name for the L86 LSW.
Does someone know the iw5_ name?
Thanks in advance

iw5_sa80_mp I think

Yep I tryed that one even before you said it xD, and it was right thanks.
Kinda wierd when the name is L86 that it is sa80 0.o.
But thank you.

And then my other question, is there somehow an attachment rapidfire ?

I'm not sure but i think it's iw5_sa80_mp_rof

Okay I will test it soon, thankyou
Tell me and how to change the characteristics of the weapons, for example damage?
Code from @archit (http://www.itsmods.com/forum/Thread-Help...sible.html)
CSHARP Code
  1. Desert eagle insta kill :
  2. public override int OnPlayerDamaged(ServerClient Attacker, ServerClient Victim, string Weapon, int Damage, string DamageMod, HitLocations HitLocation)
  3. {
  4. if (Weapon.Contains("desert")) // This is the gun
  5. return 100; // This is how much it hits with one bullet
  6. else
  7. return base.OnPlayerDamaged(Attacker, Victim, Weapon, Damage, DamageMod, HitLocation);
  8. }
(12-28-2012, 13:53)99IRock Wrote: [ -> ]Code from @archit (http://www.itsmods.com/forum/Thread-Help...sible.html)
CSHARP Code
  1. Desert eagle insta kill :
  2. public override int OnPlayerDamaged(ServerClient Attacker, ServerClient Victim, string Weapon, int Damage, string DamageMod, HitLocations HitLocation)
  3. {
  4. if (Weapon.Contains("desert")) // This is the gun
  5. return 100; // This is how much it hits with one bullet
  6. else
  7. return base.OnPlayerDamaged(Attacker, Victim, Weapon, Damage, DamageMod, HitLocation);
  8. }

Hi all! How do I make premium (Donate) were given weapons to spawn automatically becomes the primary weapon!
(12-28-2012, 14:42)Neo-Mini Wrote: [ -> ]
(12-28-2012, 13:53)99IRock Wrote: [ -> ]Code from @archit (http://www.itsmods.com/forum/Thread-Help...sible.html)
CSHARP Code
  1. Desert eagle insta kill :
  2. public override int OnPlayerDamaged(ServerClient Attacker, ServerClient Victim, string Weapon, int Damage, string DamageMod, HitLocations HitLocation)
  3. {
  4. if (Weapon.Contains("desert")) // This is the gun
  5. return 100; // This is how much it hits with one bullet
  6. else
  7. return base.OnPlayerDamaged(Attacker, Victim, Weapon, Damage, DamageMod, HitLocation);
  8. }

Hi all! How do I make premium (Donate) were given weapons to spawn automatically becomes the primary weapon!
Use the event
CSHARP Code
  1. public override void OnPlayerSpawned(ServerClient Client)


And then the code for weapons.
CSHARP Code
  1. int WepID = GetWeapon("iw5_ak47_mp_xmags_kick_red"); // The weapon
  2. Client.Other.PrimaryWeapon = WepID; //Gives the weapon
  3. Client.Ammo.PrimaryAmmoClip += 200; // The ammo he gets
Pages: 1 2 3 4