[AJUDA] Teleporte para ir em players -
Guilherme P. - 11.08.2011
Estou querendo saber como eu faзo um comando para se teleportar atй os players.
Exemplo: "/Ir [ID]"
Queria que alguйm me explicasse com um tutorial, simples mas que de para entender!
Obrigado!
Re: [AJUDA] Teleporte para ir em players -
Macintosh - 11.08.2011
Se vocк usasse um botгozinho chamado search, este tуpico nгo estaria aqui nгo й?
pawn Код:
if(strcmp(cmd, "/ir", true) == 0)
{
tmp = strtok(cmdtext, idx);
new Float:X, Float:Y, Float:Z, string[90], PlayerB;
if(!strlen(tmp)) return SendClientMessage(playerid, vermelho, "Uso correto:{FFFFFF} /Ir [id]");
PlayerB = strval(tmp);
if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, Branco, "Este jogador nгo estб online");
GetPlayerPos(PlayerB, X, Y, Z);
SetPlayerPos(playerid, X, Y+1, Z);
if(GetPlayerState(playerid) == 2)
{
new carro = GetPlayerVehicleID(playerid);
SetVehiclePos(carro, X, Y+1, Z);
PutPlayerInVehicle(playerid, carro, 0);
}
format(string, sizeof(string), "Vocк foi atй {E31919}%s.", pNome(PlayerB));
SendClientMessage(playerid, Branco, string);
format(string, sizeof(string), "O Admin {E31919}%s{FFFFFF} foi atй vocк.", pNome(playerid));
SendClientMessage(PlayerB, Branco, string);
return 1;
}
Re: [AJUDA] Teleporte para ir em players -
Guilherme P. - 11.08.2011
Pф cara, eu usei o Search, mas nгo devo ter usado as palavras corretas! :S
Desculpa aк, e obrigado pelo comando!
Re: [AJUDA] Teleporte para ir em players -
Macintosh - 11.08.2011
Ok, dessa vez tб perdoado -q.
:}
Re: [AJUDA] Teleporte para ir em players -
John_Race - 11.08.2011
Poderia usar o /goto do filtescript "fsdebug".