How to change nicks in chat
#2

pawn Код:
public OnPlayerText(playerid, text[])
{
    new pname[MAX_PLAYER_NAME], string[MAX_PLAYER_NAME];
    GetPlayerName(playerid,string,sizeof(string));
    GetPlayerName(playerid,pname,sizeof(pname));
    for(new a = 0; a < strlen(string); a++)
    {
      if(string[a] == '_') string[a] = ' ';
    }
    SetPlayerName(playerid,string);
    SendPlayerMessageToAll(playerid,text);
    SetPlayerName(playerid,pname);
    return 0;
}
Untested, but it should work
Reply


Messages In This Thread
How to change nicks in chat - by Ben147 - 08.08.2009, 07:26
Re: How to change nicks in chat - by dice7 - 08.08.2009, 08:36
Re: How to change nicks in chat - by Ben147 - 08.08.2009, 08:42

Forum Jump:


Users browsing this thread: 1 Guest(s)