25.02.2010, 14:43
Thats not the problem,
The problem is its not setting my velocity,
if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, COLOR_RED, "You need to be in a vehicle to use this command");
Is better than
The problem is its not setting my velocity,
if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, COLOR_RED, "You need to be in a vehicle to use this command");
Is better than
pawn Код:
CMD:eject(playerid, params[])
{
if(IsPlayerInAnyVehicle(playerid))
{
STUFF
}
else
{
STUFF
}
return 1;
}