SA-MP Forums Archive
how to change this........... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: how to change this........... (/showthread.php?tid=185533)



how to change this........... - MBX97 - 25.10.2010

how to change this :
when i type for example : hi
sa-mp says :
Код:
MBX97: hi
i want to change that to :
Код:
MBX97 [ID: %d] :
how to change that ?


Re: how to change this........... - Miguel - 25.10.2010

pawn Код:
public OnPlayerText(playerid, text[])
{
    new
        string[128];
       
    format(string, sizeof(string), "[ID: %d]: %s", playerid, text);
    SendPlayerMessageToAll(playerid, string);
    return 0;
}



Re: how to change this........... - MBX97 - 25.10.2010

i'll try it , thx miguel