29.09.2011, 22:19
Post the TextDrawCreate "string" for that bar.
Err, just try this(Modify it to fit your system):
Err, just try this(Modify it to fit your system):
pawn Код:
CMD:ad(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid, -1, "Usage: /Ad < Message >");
new
iStr[80],
iName[MAX_PLAYER_NAME];
GetPlayerName(playerid, iName, sizeof(iName));
format(iStr, sizeof(iStr), "%s - %s", iName, params); // Will show like: "PlayerName - Selling a car"
TextDrawSetString(Textdraw7, iStr);
TextDrawShowForAll(Textdraw7); // Comment if you are already showing the textdraw
return 1;
}