[PEDIDO] Chat
#2

Desenvolvi um sistema + ou -.
Por via das dъvidas, teste antes de botar no servidor.

pawn Код:
#include a_samp

new bool:Conhece[MAX_PLAYERS char][MAX_PLAYERS char];


public OnPlayerText(playerid, text[])
{
    static
        string[128],
        Nome[24],
        Float:_X,
        Float:_Y,
        Float:_Z
    ;

    string[0] = '\0';
    GetPlayerName(playerid, Nome, 24);
   
    GetPlayerPos(playerid, _X, _Y, _Z);
    for(new i, e = GetMaxPlayers(); i != e; ++i){
        if(IsPlayerConnected(i)){
            if(IsPlayerInRangeOfPoint(i, 30.0,  _X, _Y, _Z)){
                format(string, sizeof(string),"%s: %s", Conhece[playerid][i] ? Nome :("Desconhecido"));
                SendClientMessage(i, -1, string);
            }
        }
    }
    return 1;
}
Reply


Messages In This Thread
[PEDIDO] Chat - by caoraivoso3 - 13.04.2012, 21:13
Re: [AJUDA/PEDIDO] Chat - by zSuYaNw - 13.04.2012, 21:26
Re: [AJUDA/PEDIDO] Chat - by ReDKiiL - 13.04.2012, 22:00
Re: [AJUDA/PEDIDO] Chat - by zSuYaNw - 13.04.2012, 22:04
Re: [AJUDA/PEDIDO] Chat - by caoraivoso3 - 14.04.2012, 07:05

Forum Jump:


Users browsing this thread: 1 Guest(s)