Hey,
Well, this is my last release in MW3 plugins section.
Made by request from @99IRock , @[zoomby] alex
I hope you understand, it just disables akimbo when you're jumping, or changing weapon.
It is code..
Example:
Well, this is my last release in MW3 plugins section.
Made by request from @99IRock , @[zoomby] alex
I hope you understand, it just disables akimbo when you're jumping, or changing weapon.
It is code..
Example:
Code:
public override void OnPlayerChangeWeapon(ServerClient Client, int WeaponID)
{
int akimbo = GetWeapon("iw5_ak47_mp_camo04");//your weapon
if (WeaponID == akimbo)
{
Client.Other.PrimaryWeaponAkimbo = true;
}
Else
{
Client.Other.PrimaryWeaponAkimbo = false;
}
}