[Pedido] Script Entrar e Sair Servidor
#1

Boas, eu comeзei hoje a criar um novo game mode mas ainda nao sei o que vai ser e eu queria adicionar um script de quando o player entra ou sai aparecer uma mensagem para toda a gente tipo.

Entrar: Bruno_Pinto acabou de entrar no servidor.
Sair: Bruno_Pinto acabou de sair do servidor.

Tipo isso, eu nao sou muito bom em scripts mas pretendo aprender e todas as respostas sao bem vindas
Reply
#2


Entrando :
pawn Код:
public OnPlayerConnect(playerid)
{
    new string[64], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    format(string,sizeof string,"%s has joined the server. Welcome!",pName);
    SendClientMessageToAll(0xFFFFFFAA,string);
    return 1;
}
Saindo :
pawn Код:
public OnPlayerDisconnect(playerid, reason)
{
    new
        string[64],
        name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,MAX_PLAYER_NAME);
    switch(reason)
    {
        case 0: format(string,sizeof string,"%s left the server. (Timed out)",name);
        case 1: format(string,sizeof string,"%s left the server. (Leaving)",name);
        case 2: format(string,sizeof string,"%s left the server. (Kicked/Banned)",name);
    }
    SendClientMessageToAll(0xFFFFFFAA,string);
    return 1;
}


Ta em Inglкs tem que traduzir e.e

Crйditos Wiki-Samp caso queira saber mais clique nos links :
https://sampwiki.blast.hk/wiki/OnPlayerDisconnect
https://sampwiki.blast.hk/wiki/OnPlayerConnect
Reply
#3

Obrigado pela resposta rapida, fonciunou.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)