[Pedido] Vip anuncio
#1

ola pessoal estou com um servidor e preciso adicionar
uma menssagem tipo (membro fulano acabou de conectar)
estou quebrando a cabeзa aqui oque eu achei aqui nas buscas nao deu certo
se alguem poder ajudar agradeзo +Rep
Reply
#2

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;
}
Crйditos: https://sampwiki.blast.hk/
Reply
#3

em OnPlayerConnect

new string99[60];
new NomeDele[MAX_PLAYER_NAME];
GetPlayerName(playerid, NomeDele, MAX_PLAYER_NAME);
format(string99, sizeof(string99), "%s Conectou-se no servidor", NomeDele);
SendClientMessageToAll(0x00ffffcc, string99);
Reply
#4

Procure uma call chamada
pawn Код:
public OnPlayerConnect(playerid)
{
depois do { coloque isto:
pawn Код:
new
    Jogador[MAX_PLAYER_NAME],
    sStringFrm[128];
GetPlayerName(playerid, Jogador, sizeof(Jogador));
format(sStringFrm, sizeof(sStringFrm), "[Servidor] %s entrou no servidor. (:", Jogador);
SendClientMessageToAll(0xFFF000AA, sStringFrm);
Reply
#5

valeu pessoal vou tentar aqui assim que der tudo certo eu aviso
Reply
#6

Quote:
Originally Posted by DarknessPT
Посмотреть сообщение
Procure uma call chamada
pawn Код:
public OnPlayerConnect(playerid)
{
depois do { coloque isto:
pawn Код:
new
    Jogador[MAX_PLAYER_NAME],
    sStringFrm[128];
GetPlayerName(playerid, Jogador, sizeof(Jogador));
format(sStringFrm, sizeof(sStringFrm), "[Servidor] %s entrou no servidor. (:", Jogador);
SendClientMessageToAll(0xFFF000AA, sStringFrm);
sStringFrm[128]; // Nгo й necessбrio tudo isso de nъcleos...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)