SA-MP Forums Archive
[AJUDA] Como Boto Texto em Cima da cabeзa do Player - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Como Boto Texto em Cima da cabeзa do Player (/showthread.php?tid=203275)



[AJUDA] Como Boto Texto em Cima da cabeзa do Player - @ReeF - 26.12.2010

olha tentei so que ta dando erro

Код:
public OnRconLoginAttempt(ip[], password[], success)
{
 SetPlayerChatBubble(playerid,"Membro[LSD]", 0xF6F6F6AA, X,Y,Z, 99999);
 return 1;
}
Код:
C:\Documents and Settings\Livre\Desktop\Marvin'\[LSD]Drift\gamemodes\LSD.pwn(2406) : error 017: undefined symbol "playerid"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
e pra #define playerid ?
pq nunca vi definir playerid


Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - Diogo_braz - 26.12.2010

pawn Код:
public OnRconLoginAttempt(ip[], password[], success, playerid)
{
 SetPlayerChatBubble(playerid,"Membro[LSD]", 0xF6F6F6AA, X,Y,Z, 99999);
 return 1;
}
Vк se funciona ^^


Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - @ReeF - 26.12.2010

continuou a mesma coisa


Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - -GooGle- - 26.12.2010

adapte ao seu gm:

pawn Код:
public OnPlayerText(playerid, text[])
{
  SetPlayerChatBubble(playerid,"Membro[LSD]", 0xF6F6F6AA, X,Y,Z, 99999);
  return 1;
}



Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - Shelby - 26.12.2010

Quote:
Originally Posted by @ReeF
Посмотреть сообщение
Код:
public OnRconLoginAttempt(ip[], password[], success)
e pra #define playerid ?
pq nunca vi definir playerid
Nгo tem playerid nos parвmetros do "OnRconLoginAttempt", mas, vocк pode tentar da seguinte forma:

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
    if(success) //Se a senha estiver correta.
    {
        new pip[16];
        for(new i=0; i<MAX_PLAYERS; i++) //Loop
        {
            GetPlayerIp(i, pip, sizeof(pip));
            if(!strcmp(ip, pip, true))
            {
                SetPlayerChatBubble(i,"Membro[LSD]", 0xF6F6F6AA, 100.0, 99999);
            }
        }
    }
    return 1;
}
Sу irб criar o ChatBubble se o jogador logar na rcon.


Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - Ricop522 - 26.12.2010

Vocк pode perceber que no :
public OnRconLoginAttempt(ip[], password[], success)
Nгo tem nenhum "playerid"
Por isso no Undef... s..
Mais vocк pode colocar assim para criar o "pid"

pawn Код:
public OnRconLoginAttempt(ip[], password[], success)
{
     for(new i=0; i<MAX_PLAYERS; i++)
     {
     SetPlayerChatBubble(i,"Membro[LSD]", 0xF6F6F6AA, X,Y,Z, 99999);
     return 1;
     }    
}



Re: [AJUDA] Como Boto Texto em Cima da cabeзa do Player - Shelby - 26.12.2010

Ricop, seu modo estб correto...
...se a intenзгo for adicionar a Tag "Membro[LSD]" a todos os jogadores sempre que alguйm tentar logar na rcon.