13.02.2016, 08:13
Код:
new WeaponID, Ammo; GetPlayerWeaponData(playerid, 1, WeaponID, Ammo); if(WeaponID == 2) { // esta usando a arma golf club }
new WeaponID, Ammo; GetPlayerWeaponData(playerid, 1, WeaponID, Ammo); if(WeaponID == 2) { // esta usando a arma golf club }
new Str[128],WeaponID, Ammo;
switch(GetPlayerWeaponData(playerid, 1, WeaponID, Ammo))
{
case 2: Str = "Esta usando a arma golf club";
case 3: Str = "Esta usando alguma arma";
}
return Str;
TemArma(playerid, arma)
{
new WeaponID, Ammo;
for (new i = 0; i <= 12; i++)
{
GetPlayerWeaponData(playerid, i, WeaponID, Ammo);
if(WeaponID == arma)
{
return true;
}
}
return false;
}
if(TemArma(playerid, WEAPON_GOLFCLUB))
{
/** Tem Arma**/
}
else
{
/** Nгo tem Arma**/
}
PHP код:
Uso PHP код:
|