07.11.2012, 09:40
hey guys... i'm making eject command but problem i don't have any idea how to make if "ID" is in "Playerid" Vehicle He Can Eject
i just make it like this but unkown lol
i will try to give u idea
for example the ID must be in the playerid vehicle so the playerid can eject him
thats the code
lol i tryed to make it like this, but it make no sense
i just make it like this but unkown lol
i will try to give u idea
for example the ID must be in the playerid vehicle so the playerid can eject him
thats the code
Код:
command(ej, playerid, params[])
{
new ID;
if(sscanf(params,"u",ID)) return SendClientMessage(playerid,AC,"Usage: /ej [playerid]");
else if(!IsPlayerConnected(ID)) return SendClientMessage(playerid,-1,"ERROR:This player isn't connected");
else
{
if(ID == IsPlayerInVehicle(playerid))
{
new Float:xposs, Float:y, Float:z;
RemovePlayerFromVehicle(ID);
GetPlayerPos(ID, xposs, y, z);
SetPlayerPos(ID, xposs, y, z+3);
SendClientMessage(ID, GREY,"You Have Been Ejected From The Vehcile.");
SendClientMessage(playerid, COLOR_RED, "Player Ejected.");
}
else SendClientMessage(playerid, COLOR_RED, "The Player That You Are Trying To Eject Isn't In Your Vehicle.");
}
return 1;
}
PHP код:
if(ID == IsPlayerInVehicle(playerid))


