03.12.2009, 01:35
I don't think he posted the error. That error is when you forward something different then the public function says. If that makes any sense. Look here.
That would generate this error because the function header differs from the prototype. I really don't know what a prototype is but I think it's that.
pawn Код:
forward DoSomething(playerid);//Header
public DoSomething()//Prototype
{
return 1;
}