09.02.2013, 17:44
Criei um sistema de teleporte simprao aqui para postar para voces...Nao vi nenhum topico do tipo aqui no forum entao esta ae:
Ao clicar no player via TAB voce sera teleportado ate o mesmo!
pawn Код:
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
new Float: P[3];
new Msg[120];
new nomep[MAX_PLAYERS];
GetPlayerName(playerid, nomep, sizeof(nomep));
for( new i = 0; i < MAX_PLAYERS; ++i )
{
if(clickedplayerid == i)
{
GetPlayerPos(i, P[0], P[1], P[2]);
SetPlayerPos(playerid, P[0], P[1], P[2]);
format(Msg, sizeof(Msg), "O jogador %s foi ate voce!", nomep);
SendClientMessage(i,0x1E90FF99, Msg);
SendClientMessage(playerid,0x1E90FF99, "Voce foi ate o player selecionado!");
}
}
return 1;
}