is this possible?
#1

Is this possible to set letter before name
examle
[M]Name
Reply
#2

Quote:
Originally Posted by b00m112
Посмотреть сообщение
Is this possible to set letter before name
examle
[M]Name
Yeah?
\If you mean in-game yes
Reply
#3

Yes it is Possible

Like this:

PHP код:
public OnPlayerText(playeridtext[])
{
    new 
string[128], playername[MAX_PLAYER_NAME];
    new 
color GetPlayerColor(playerid);
    
GetPlayerName(playeridplayernamesizeof(playername));
    
format(stringsizeof(string), "[M]%s: {FFFFFF}%s"playernametext);
    
SendClientMessageToAll(color,string);
    return 
0;

Reply
#4

It is possible, here is simple example
Код:
new name[MAX_PLAYER_NAME], string[24+MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string, sizeof(string), "[M]%s", name);
SetPlayerName(playerid, string);
Reply
#5

thanks, i use this for /aod but if i type /aod to go off at admin duty set default name back.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)