lol sry my aim is laggy, okay heres what u do:
For the background, i told you its Background, you had it as Bckground.
Next,
int OnStartGameMenu =
int OnDifficultyMenu = 0
extern int DifficultySetting
they all need ; (semicolons)
So it would go like this:
int OnStartGameMenu
int OnDifficultyMenu = 0;
extern int DifficultySetting;
But on the first part, there is nothing assigned:
int OnStartGameMenu = 1;
int OnDifficultyMenu = 0;
extern int DifficultySetting;
Change it to 1 because of the syntax.
Heres the entire code:
Background = load("Background.png");
Color EasyColor = RGB(0, 0, 0);
Color MediumColor = RGB(0, 0, 0);
Color HardColor = RGB(0, 0, 0);
int OnStartGameMenu = 1;
int OnDifficultyMenu = 0;
extern int DifficultySetting;
Hope that helped.