21.09.2015, 20:16
Quote:
2 Warnings. number of arguments does not match definition
Because you gave error on that line? |
Code:
new tmp[64]; format(tmp, sizeof(tmp), "[RANK %d] %s", rank, GetPlayerName(playerid)); SetPlayerName(playerid, tmp);
Code:
new tmp[64], name[24]; GetPlayerName(playerid, name, 24); format(tmp, sizeof(tmp), "[RANK %d] %s", rank, name); SetPlayerName(playerid, tmp);