Help for vehicle
#1

Hi,

I want to make a cmd for get ammo ONLY on the Enforcer.
Example :

The SWAT enter in passager in the truck, he type /ammo [weapon] and he have now for example 200 ammos for his m4 ?
You understand ?

Thanks for you'r help
Reply
#2

Код:
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;
   }
 }
}
Reply
#3

Thx to you but, if i want allow that only if the player is in the ENFORCER ?
Reply
#4

Код:
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;
}
Reply
#5

Quote:
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;
}
Ah, yeah forgot to put "IsPlayerInVehicle"
Reply
#6

Thx to you
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)