[FilterScript] Teleport Player [Codigo]

Um sistema de teleporte simples, quando determinado jogador clicar via TAB , sera teleportado.

Creditos: ungroup

Download:
pawn Code:


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;
}





Espero que gostem!

0 comentários:

Postar um comentário

 
▲ Subir