if(strcmp(cmd, "/ammo", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFaction] == 3) //here you need to pur SWAT's faction ID.
{
SafeGivePlayerWeapon(playerid, 24, 70);
SafeGivePlayerWeapon(playerid, 31, 200);
PlayerActionMessage(playerid,15.0,"takes out his M4 under the seat");//Edit this with what you want :P
return 1;
}
}
}
if(strcmp(cmd, "/ammo", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFaction] == 3) //here you need to pur SWAT's faction ID.
{
if(IsPlayerInVehicle(playerid, vehicleid)) //delete the vehicleid and put in the inforcers id, the vehicle id of the server you know?
{
SafeGivePlayerWeapon(playerid, 24, 70);
SafeGivePlayerWeapon(playerid, 31, 200);
PlayerActionMessage(playerid,15.0,"takes out his M4 under the seat");//Edit this with what you want :P
}
else
{
SendClientMessage(playerid, COLOR, "Your not in a enforcer!"); // Edit if you want
}
}
}
return 1;
}
|
Originally Posted by Niixie
Код:
if(strcmp(cmd, "/ammo", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFaction] == 3) //here you need to pur SWAT's faction ID.
{
if(IsPlayerInVehicle(playerid, vehicleid)) //delete the vehicleid and put in the inforcers id, the vehicle id of the server you know?
{
SafeGivePlayerWeapon(playerid, 24, 70);
SafeGivePlayerWeapon(playerid, 31, 200);
PlayerActionMessage(playerid,15.0,"takes out his M4 under the seat");//Edit this with what you want :P
}
else
{
SendClientMessage(playerid, COLOR, "Your not in a enforcer!"); // Edit if you want
}
}
}
return 1;
}
|