19.05.2015, 18:09
Okay change this:
to this:
%s is a replacement character for strings.
Код:
format(name1, sizeof(name1), PLAYERS, PlayerName(playerid)); format(name2, sizeof(name2), PLAYERS, inputtext);
Код:
format(name1, sizeof(name1), "%s", PlayerName(playerid)); format(name2, sizeof(name2), "%s", inputtext);