07.01.2018, 14:13
Quote:
if you would have taken a better look on his code, you would've noticed that he is doing that:
SaveStats(id); Also be sure that SaveSats saves the stats for ID and not playerid |
PHP код:
stock frename(oldname[],newname[]) {
if (!fexist(oldname)) return false;
fremove(newname);
if (!fcopy(oldname,newname)) return false;
fremove(oldname);
return true;
}