20.01.2013, 17:27
Try changing
to
Then on your public function change all the LvLName = "Whatever";
to
Then format under OnPlayerText like so:
pawn Код:
LvLName[128];
pawn Код:
LvLName[MAX_PLAYERS][128];
to
pawn Код:
LvLName[playerid] = "Whatever";
pawn Код:
format(string, sizeof(string), "%s %s: %s", LvlName[playerid], pName, text);