30.08.2012, 14:13
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
new Float:x, Float:y, Float:z,str[128];
GetPlayerPos(playerid, x, y, z);
format(str,sizeof(str),"{FF00FF}[VEHICLE]:{FFFFFF} %d is moving to the following pos: %f, %f, %f", playerid, x, y, z);
SendClientMessageToAll(-1, str);
return 1;
}