27.03.2016, 09:26
PHP код:
CMD:exit(playerid,params[])
{
if(!IsPlayerInVehicle(playerid,411)) return SendClientMessage(playerid,COLOR_RED,"You Need To Be In A RC Car To Use This Command.");//Change 411 to your rc car id
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z + 2.5);
return 1;
}