02.05.2012, 17:58
Vini, acho que nгo precisa colocar o player no veнculo, quando teleporta o carro, se alguйm estб dentro, vai automaticamente.
Olha como fiz:
Olha como fiz:
PHP код:
if (strcmp(cmd, "/extele", true) == 0)
{
if(PlayerInfo[playerid][pMembro] == 3 || PlayerInfo[playerid][pLider] == 3)
{
if(PlayerToPoint(2.0, playerid, 1878.8372,-2367.2734,13.5547))
{
if (GetPlayerState(playerid) == 2) {
new
CCarro = GetPlayerVehicleID(playerid)
;
SetVehiclePos(CCarro, -1429.8191,467.6045,7.1875);
}
else
SetPlayerPos(playerid, -1429.8191,467.6045,7.1875);
}
if(PlayerToPoint(2.0, playerid, -1429.8191,467.6045,7.1875))
{
if (GetPlayerState(playerid) == 2) {
new
CCarro = GetPlayerVehicleID(playerid)
;
CCarro = GetPlayerVehicleID(playerid)
SetVehiclePos(CCarro, 1878.8372,-2367.2734,13.5547);
}
else
SetPlayerPos(playerid, 1878.8372,-2367.2734,13.5547);
}
}
return 1;
}