Help with Error.
#2

Quote:
Originally Posted by [Sk]Noob
Посмотреть сообщение
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);
}
You used ur own function once in your script. The second argument (playa) is in this case not a string, so change it in your script, where you used the function, to a string to fix it.
Reply


Messages In This Thread
Help with Error. - by [Sk]Noob - 10.07.2010, 15:23
Re: Help with Error. - by DeathOnaStick - 10.07.2010, 15:27
Re: Help with Error. - by Dennis - 10.07.2010, 15:41
Re: Help with Error. - by DeathOnaStick - 10.07.2010, 15:43
Re: Help with Error. - by Hiddos - 10.07.2010, 16:13

Forum Jump:


Users browsing this thread: 1 Guest(s)