How to Make [playerid] before the name on the chatbox - 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 Make [playerid] before the name on the chatbox (
/showthread.php?tid=134935)
How to Make [playerid] before the name on the chatbox -
Noredine - 18.03.2010
How to Make [playerid] before the name on the chatbox
Thank You
Re: How to Make [playerid] before the name on the chatbox -
laser50 - 18.03.2010
maybe, OnPlayerText?? i dunno :P
Re: How to Make [playerid] before the name on the chatbox -
Kurence - 18.03.2010
pawn Код:
public OnPlayerText(playerid,text[]){
new msg[150];
format(msg,sizeof(msg),"[%d] %s",playerid,text);
SentPlayerMessageToAll(playerid,msg);
return 0;
}
Should work
Re: How to Make [playerid] before the name on the chatbox -
Torran - 18.03.2010
Quote:
Originally Posted by Kurence
pawn Код:
public OnPlayerText(playerid,text[]){ new msg[150]; format(msg,sizeof(msg),"[%d] %s",playerid,text); SentPlayerMessageToAll(playerid,msg); return 0; }
Should work
|
You did typo so incase he copies and pastes and gets errors:
pawn Код:
public OnPlayerText(playerid,text[]){
new msg[150];
format(msg,sizeof(msg),"[%d] %s",playerid,text);
SendPlayerMessageToAll(playerid,msg);
return 0;
}
Re: How to Make [playerid] before the name on the chatbox -
Desert - 18.03.2010
And i would advise add the name too and reduce the string to 128 cells
pawn Код:
public OnPlayerText(playerid,text[]){
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid,name,sizeof(name));
new msg[128];
format(msg,sizeof(msg),"[%d] %s: %s",playerid,name,text);
SendPlayerMessageToAll(0xFFFFFF,msg);
return 0;
}
Edit: And use a color which isn't playerid
Re: How to Make [playerid] before the name on the chatbox -
Noredine - 18.03.2010
I'll test
Re: How to Make [playerid] before the name on the chatbox -
Ozz - 18.03.2010
Quote:
Originally Posted by Noredine
I'll test 
|
okey.
Re: How to Make [playerid] before the name on the chatbox -
Noredine - 18.03.2010
Doesn't work
Re: How to Make [playerid] before the name on the chatbox -
_Raven - 18.03.2010
Код:
if( text[ 0 ] )
{
new idtext[ 128 ];
format( idtext, 128, "(%d) %s", playerid, text );
SendPlayerMessageToAll( playerid, idtext );
return 0;
}