I'm Getting An Frustrating Error! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: I'm Getting An Frustrating Error! (
/showthread.php?tid=265548)
I'm Getting An Frustrating Error! -
HayZatic - 01.07.2011
I Do Not understand! So Heres Whats Happening This Line
Код:
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" Thanks For Playing!");
print("--------------------------------------\n");
return 1;
}
Is Giving Me This Error
Код:
error 001: expected token: ";", but found "public"
Re: I'm Getting An Frustrating Error! -
[HiC]TheKiller - 01.07.2011
The line before
pawn Код:
public OnFilterScriptInit()
Has a mission semi-colon ';'.
Re: I'm Getting An Frustrating Error! -
JaTochNietDan - 01.07.2011
What's above this code snippet? You should try reading and understand the error, it is pretty self explanitory.
Re: I'm Getting An Frustrating Error! -
HayZatic - 01.07.2011
Well Since i Wasnt Running Filterscript i thought, how about removeing that stuff. So i did and i got this error?
Код:
error 001: expected token: ";", but found "-identifier-"
Re: I'm Getting An Frustrating Error! -
JaTochNietDan - 01.07.2011
Quote:
Originally Posted by HayZatic
Well Since i Wasnt Running Filterscript i thought, how about removeing that stuff. So i did and i got this error?
Код:
error 001: expected token: ";", but found "-identifier-"
|
That hasn't answered our question, there is nothing wrong with the snippet you showed us. The problem lies in the code before it, and it's still there. You're clearly missing a semi-colon, read the error and understand it.
I really recommend you start reading up on the official PAWN documentation over at Compuphase's PAWN page.
Re: I'm Getting An Frustrating Error! -
[HiC]TheKiller - 01.07.2011
The line before the line with the error is missing a semi-colon as stated above.
Re: I'm Getting An Frustrating Error! -
HayZatic - 01.07.2011
Thanks, yes it was a simple error, When the code was this
Код:
new RandomMSG[][] =
{
"Thank You For Playing At The Server! We Enjoy Your Stay!",
"Please No Hacking, We Will Warn Your If We Spot An Hacker!",
"Someone Is Hacking And No Admin Is Online? Please Report Them At The Fourms!"
}
I Clearly Forgot The ; at the end so now it looks like
Код:
new RandomMSG[][] =
{
"Thank You For Playing At The Server! We Enjoy Your Stay!",
"Please No Hacking, We Will Warn Your If We Spot An Hacker!",
"Someone Is Hacking And No Admin Is Online? Please Report Them At The Fourms!"
};
Thanks, Ill Start Reading the guide!