[AJUDA] Como Boto Texto em Cima da cabeзa do Player
#1

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
Reply
#2

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

continuou a mesma coisa
Reply
#4

adapte ao seu gm:

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

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.
Reply
#6

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

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)