29.09.2013, 12:40
Do you mean is there a command which you type and then it tells you if you're in a vehicle or not?
pawn Код:
if(strcmp(cmdtext, "/carcheck", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, -1, "You are in a vehicle.");
return 1;
}
}
return 0;
}