[Ajuda] Sistema aqui OnPlayerText
#1

Bem, queria fazer algo que й encontrado em servidores RPG. o cara fala e sу que vк o que ele falou й quem ta perto dele. Seguindo a lуgica de minha programaзгo HARD, consegui fazer isso kk :

pawn Code:
public OnPlayerText(playerid, text[])
{
    new Float:x, Float:y, Float:z;
    GetPlayerPos(playerid, x, y, z);

    for( new i = 0; i <MAX_PLAYERS; i++)
    {
        if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));
        {
            {
                new var[100], name[80];
                GetPlayerName(playerid, name, 80);
                format(var, sizeof(var), "%s Diz: %s", name, playerid, text);
                SendClientMessage(i, Branco ,var);
                return true;
            }
        }
    }

    return 0;
}
sу que infelizmente deu erro. error 036: empty statement.
e foi na linha que verifica se os players estгo prуximos ao cara que falou
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));

se alguem puder da uma ajuda ai. !
Reply
#2

pawn Code:
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ));
Condicionais nгo usam ;
tire o ; e seja feliz ^^

pawn Code:
if(IsPlayerInRangeOfPoint( i , 0.5, x, y, z ))
Reply
#3

caralho era sу isso ?
vlw bro .-.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)