[PEDIDO] Ao player conectar e desconectar
#1

Bom eu estou precisando que alguem me ajuda a colocar para aparecer no chat quando player conectar, Ex: tal player entrou no server. E ao desconctar EX: tal player saiu do server, quem poder ajuda eu agredeзo muito
Reply
#2

usas o search, ja vi mais de 5 tops com a mesma pergunta, codigos uteis tem
Reply
#3

Em OnPlayerConnect:
pawn Code:
new string[128];
    new nomeentrou[MAX_PLAYER_NAME];
    GetPlayerName(playerid,nomeentrou,MAX_PLAYER_NAME);
    format(string,sizeof string,"%s entrou no servidor.",nomeentrou);
    SendClientMessageToAll(COR,string);
Em OnPlayerDisconnect:
pawn Code:
new string[128];
    new nomesaiu[MAX_PLAYER_NAME];
    GetPlayerName(playerid,nomesaiu,MAX_PLAYER_NAME);
    format(string,sizeof string,"%s saiu do servidor.",nomesaiu);
    SendClientMessageToAll(COR,string);
Reply
#4

Em OnPlayerConnect:
pawn Code:
new string[56];
    new PlayerName[128];
    GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
    format(string, sizeof(string), "- %s entrou no servidor.", PlayerName);
   SendClientMessageToAll(0xFF0000AA, string);
Em OnPlayerDisconnect:
pawn Code:
new string[56];
    new PlayerName[128];
    GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
    format(string, sizeof(string), "- %s saiu do servidor.", PlayerName);
   SendClientMessageToAll(0xFF0000AA, string);
EDIT#: Ops, mals aew postamos quase na mesma hora :/
Reply
#5

Valeu ai Fabricio e Lipepva deu certinho, obrigado mesmo!
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)