19.03.2013, 00:17
Tenta ai, nunca usei esta funзгo.
pawn Код:
MudarNick(playerid, NomeNovo[] ) {
new
NomeAntigo[MAX_PLAYER_NAME],
pStr[45]
;
GetPlayerName(playerid, NomeAntigo, MAX_PLAYER_NAME);
SetPlayerName(playerid, NomeNovo);
format(String, sizeof(String), "LLADMIN/Contas/%s.txt", NomeAntigo);
format(pStr, 45, "LLADMIN/Contas/%s.txt", NomeNovo);
DOF2_RenameFile(String,pStr);
return true;
}