[ajuda] teleporte com carro
#1

criei um comando pra teleportar o player, porйm nгo teleporta com o veнculo junto, como faзo?
comando:
pawn Код:
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))
            {
                SetPlayerPos(playerid, -1429.8191,467.6045,7.1875);
            }
            if(PlayerToPoint(2.0, playerid, -1429.8191,467.6045,7.1875))
            {
                SetPlayerPos(playerid, 1878.8372,-2367.2734,13.5547);
            }
        }
        return 1;
    }
Reply
#2

pawn Код:
SetVehiclePos(1, 123.456, 123.456, 12.34); ..
Reply
#3

pawn Код:
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(IsPlayerInVehicle(playerid))
            {
                new CarID = GetPlayerVehicleID(playerid);
                SetVehiclePos(CarID, -1429.8191,467.6045,7.1875);
                PutPlayerInVehicle(playerid, CarID, 0);
            }
            else
                SetPlayerPos(playerid, -1429.8191,467.6045,7.1875);
        }
        if(PlayerToPoint(2.0, playerid, -1429.8191,467.6045,7.1875))
        {
            if(IsPlayerInVehicle(playerid))
            {
                new CarID = GetPlayerVehicleID(playerid);
                SetVehiclePos(CarID, 1878.8372,-2367.2734,13.5547);
                PutPlayerInVehicle(playerid, CarID, 0);
            }
            else
                SetPlayerPos(playerid, 1878.8372,-2367.2734,13.5547);
        }
    }
    return 1;
}
Reply
#4

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:

PHP код:
if (strcmp(cmd"/extele"true) == 0)
    {
        if(
PlayerInfo[playerid][pMembro] == || PlayerInfo[playerid][pLider] == 3)
        {
            if(
PlayerToPoint(2.0playerid1878.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.0playerid, -1429.8191,467.6045,7.1875))
            {
                if (
GetPlayerState(playerid) == 2) {
                    new
                        
CCarro GetPlayerVehicleID(playerid)
                    ;
                    
CCarro GetPlayerVehicleID(playerid)
                    
SetVehiclePos(CCarro1878.8372,-2367.2734,13.5547);
                }
                else 
                    
SetPlayerPos(playerid1878.8372,-2367.2734,13.5547);
                
            }
        }
        return 
1;
    } 
Reply
#5

nгo adiantou, continua indo sem o veнculo.

@edit
igual, ainda o carro nгo й teleportado junto.
Reply
#6

Quote:
Originally Posted by Bruno Pereira
Посмотреть сообщение
Vini, acho que nгo precisa colocar o player no veнculo, quando teleporta o carro, se alguйm estб dentro, vai automaticamente.
Nunca testei isso.

Quote:
Originally Posted by bombomloko
Посмотреть сообщение
nгo adiantou, continua indo sem o veнculo.

@edit
igual, ainda o carro nгo й teleportado junto.
O teleporte й pro mesmo interior e vw?
Reply
#7

O veiculo muda de interior?

Pq se for ter q mudar, vai ter q usar

LinkVehicleToInterior
Reply
#8

nгo, nгo muda de interior, sу vai de SF atй LS, mesmo interior.
Reply
#9

Quote:
Originally Posted by Viniborn
Посмотреть сообщение
Nunca testei isso.



O teleporte й pro mesmo interior e vw?
Fiz um cmd teste aqui vini, funfou. Nгo precisa do Put... =)
Reply
#10

Quote:
Originally Posted by Bruno Pereira
Посмотреть сообщение
Fiz um cmd teste aqui vini, funfou. Nгo precisa do Put... =)
Bom saber : )
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)