17.01.2015, 22:42
Hello Guys I have a problem about Text String soo
This is the problem
http://www.imgz.ro/view.php?id=165755
Look when i player types in chat more about 2 -3 words it's starting a new line but I want all the text in one line
Here's my code , and string length
+REP for who can solve this !
This is the problem
http://www.imgz.ro/view.php?id=165755
Look when i player types in chat more about 2 -3 words it's starting a new line but I want all the text in one line
Here's my code , and string length
pawn Код:
else if(AccInfo[playerid][Level] >= 3 && AccInfo[playerid][Level] == 10 && IsPlayerAdmin(playerid))
{
format(PText, 1000, "{FF0000}({FFFFFF}RCON{FF0000}){15FF00}(%d):{FFFFFF} {%06x}%s", playerid, AccInfo[playerid][p_TextColor], text);
SendPlayerMessageToAll(playerid, PText);
return 0;
}
else if(AccInfo[playerid][Level] >= 3 && AccInfo[playerid][Level] <= 10)
{
format(PText, 1000, "{1900FF}(Admin){15FF00}(%d):{FFFFFF} {%06x}%s", playerid, AccInfo[playerid][p_TextColor], text);
SendPlayerMessageToAll(playerid, PText);
return 0;
}