31.05.2017, 14:57
I still have one error.
Code:
C:\Users\Tannos\Desktop\My server\gamemodes\cod.pwn(11450) : warning 213: tag mismatch C:\Users\Tannos\Desktop\My server\gamemodes\cod.pwn(11451) : error 035: argument type mismatch (argument 1) C:\Users\Tannos\Desktop\My server\gamemodes\cod.pwn(11452) : warning 202: number of arguments does not match definition C:\Users\Tannos\Desktop\My server\gamemodes\cod.pwn(11450) : warning 204: symbol is assigned a value that is never used: "file" C:\Users\Tannos\Desktop\My server\gamemodes\cod.pwn(11445) : warning 204: symbol is assigned a value that is never used: "string1" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
Code:
CMD:unban(playerid,params[]) { new string[124],string1[124]; if(isnull(params)) return SendClientMessage(playerid, red, "/unban [playername]"); format(string,sizeof(string),"Users/%s.ini",params); if(fexist(string)) { new INI:file = INI_Open(string); INI_WriteInt(file,"Banned",0); //this is the error line.. INI_Close(file); } else SendClientMessage(playerid,-1,"Account not found"); return 1; }