10.07.2010, 15:27
Quote:
C:\Users\Yaroslav\Desktop\SDRP\gamemodes\sdgc.pwn( 928 : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. This is the error.. This is the line: PlayerJailLog(string,playa); And this is the public PlayerJailLog forward PlayerJailLog(string[],name[]); public PlayerJailLog(string[],name[]) { new entry[256],str[256]; format(entry, sizeof(entry), "%s\n",string); format(str,sizeof(str), "pLogs/%s.admin.log",name); new File:hFile; hFile = fopen(str, io_append); fwrite(hFile, entry); fclose(hFile); } |