Originally posted by megasubban
I get a bad syntax error on line 593 when I try to compile a GSC mod menu
You must login or register to view this content.
What you have there is an "escape character"
self MainMenu("Clients Menu","^2Annon ^1v1
\");
The interpreter basically thinks there is no ending quotation mark, and that's your problem, you can fix this by removing the backslash (\) or adding another quotation mark.