Ok, here is my zip file. It includes the source coding and all, and the bottom part os for when I am going to add stuff for the new game, right now, it is not enough to do anything with so I am working on it.
Also, I edited the code to an "If...Else...Endif" type, instead of checking the same "If" twice. This should make it a little bit, better... Also, if I am indinting incorrectly, please let me know. I am new to programming so I am not to formiliar with Indenting accuratly.
` ;;;;;;;;;;;;;;;;;;
` ;This is a test.;;
` ;By: Maindric;;;;;
` ;;;;;;;;;;;;;;;;;;
` Let's set up the code.
SET DISPLAY MODE 1024, 768,32 : `This sets the screen size to 1024x768x32
Sync on
Hide Mouse
Load Image "ButtonsNewgame.png", 1
Load Image "ButtonsEndgame.png", 2
Load Image "CursorsBluecloudy.png", 3
Sprite 1, 0, 550, 1
Sprite 2, 0, 650, 2
` This is the title menu of my coding.
Do
Sync
Sprite 3, Mousex(), Mousey(), 3
If SPRITE HIT(3, 1)=1
If mouseclick()=1
Endif
Scale Sprite 1, 115
Else
Scale Sprite 1, 100
Endif
If SPRITE HIT(3, 2)=1
If mouseclick()=1
Exit
Endif
Scale Sprite 2, 115
Else
Scale Sprite 2, 100
Endif
Loop