25.11.2012, 12:36
Converti meu GM de DINI para DOF2 e deu este erro
Linha
Comando completo
pawn Код:
(15498) : error 017: undefined symbol "DINI_fcopytextfile"
pawn Код:
DINI_fcopytextfile(file, string);
pawn Код:
if((strcmp(cmd, "/deletarconta", true)==0 || strcmp(cmd, "/dc", true) ==0) && PlayerInfo[playerid][pAdmin] == DONO)
{
new file[64];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /deletarconta [Nick]");
if (PlayerInfo[playerid][pAdmin] != DONO)
{
SendClientMessage(playerid, COLOR_GREY,"Vocк nгo tem permissгo para usar esse comando!");
return true;
}
getdate(v[0], v[1], v[2]);
gettime(v[3], v[4], v[5]);
format(string, 128, "[%d/%d/%d] [%d:%d:%d] %s Apagou a conta: %s", v[2], v[1], v[0], v[3], v[4], v[5] , PlayerName(playerid), tmp);
AComandosLog(string);
format(file,sizeof(file),"Contas/%s.ini",tmp);
format(string, 128, "%s.bak", file);
DINI_fcopytextfile(file, string);
fremove(file);
return true;
}