09.07.2017, 21:11
I want to teleport a vehicle with a player
so if he in any vehicle it teleport with him
if not just he teleport only
here my code
so if he in any vehicle it teleport with him
if not just he teleport only
here my code
Код:
CMD:sfa(playerid, params[])
{
new string[256];
new tele[MAX_PLAYERS];
SetPlayerPos(playerid,-1657.6793, -165.2959, 14.1484);
GameTextForPlayer(playerid, "~w~San Fierro Airport", 1500, 4);
GetPlayerName(playerid, tele, sizeof(tele));
format(string, sizeof(string), "%s Has Just Teleported To San Fierro Airport", tele, playerid);
return SendClientMessageToAll(COLOR_GREEN, string);
}

