24.09.2010, 17:15
These errors are from your dialog response public.
First- The symbol 'dialogid' is not recognized.
Second- Some function is declared differently from the way it's implemented; example:
Will return an error because the function 'wtf' is not declared.
Third error- Remove the 'new string[256];' line. You have a string variable that you haven't used.
Show me your OnDialogResponse line.
First- The symbol 'dialogid' is not recognized.
Second- Some function is declared differently from the way it's implemented; example:
pawn Код:
forward Test(playerid,wtf);
public Test(playerid)
{
//...
}
Third error- Remove the 'new string[256];' line. You have a string variable that you haven't used.
Show me your OnDialogResponse line.