You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(Client_HasWeapon(client, "weapon_m4a1_silencer"))
{
ReplyToCommand(client, "You are holding an m4a1-s");
return Plugin_Handled;
}
else
{
ReplyToCommand(client, "You are not holding an m4a1-s");
return Plugin_Handled;
}
Will always return false even when the condition is met.
The text was updated successfully, but these errors were encountered:
if(Client_HasWeapon(client, "weapon_m4a1_silencer"))
{
ReplyToCommand(client, "You are holding an m4a1-s");
return Plugin_Handled;
}
else
{
ReplyToCommand(client, "You are not holding an m4a1-s");
return Plugin_Handled;
}
Will always return false even when the condition is met.
The text was updated successfully, but these errors were encountered: