Ok I dont know what that means really, so this is my full code so far. Maybe you could guide me into where it goes in my code.
` My Menu Text Variables
new_game$="New Game"
load_game$="Load Game"
online$="Online"
options$="Options"
exit$="Exit"
` Text Variable Positions
x=360
y=200
x1=360
y1=240
x2=360
y2=280
x3=360
y3=320
x4=360
y4=360
` Variable Text Height And Width
w=text width(new_game$)
h=text height(new_game$)
w1=text width(load_game$)
h1=text height(load_game$)
w2=text width(online$)
h2=text height(online$)
w3=text width(options$)
h3=text height(options$)
w4=text width(exit$)
h4=text height(exit$)
` My Company Logo
load image "Blazing Fire Logo 5.bmp",1
xPos=abs(50)
yPos=abs(50)
paste image 1,xPos,yPos
` Wait For 3 Seconds After Logo Appears
wait 3000
` Remove Logo
cls
` Wait For 0.5 Seconds After Logo Disappears
wait 500
` Load And Play Main Menu Theme Song
load music "Menu Theme.mp3",1
loop music 1
` The Main Menu
load bitmap "Swordman Rag 2.bmp"
set text size 40
red=abs(255)
green=abs(0)
blue=abs(0)
ink RGB(red,green,blue),RGB(red,green,blue)
text 230,50,"My Game Title Goes Here"
set text size 12
text 360,200,"New Game"
text 360,240,"Load Game"
text 360,280,"Online"
text 360,320,"Options"
text 360,360,"Exit"
` What Happens If The Mouse Is Used. The New Game Option
do
if mousex()>=x and mousex()<=x+w and mousey()>=y and mousey()<=y+h
ink rgb(0,232,0),0
rollover=2
if mouseclick()=1
cls
new_game$="This Is The Temparary New Game Button"
endif
else
ink rgb(255,255,255),0
rollover=1
endif
text x,y,new_game$
` What Happens If The Mouse Is Used. The Load Game Option
if mousex()>=x1 and mousex()<=x1+w1 and mousey()>=y1 and mousey()<=y1+h1
ink rgb(0,232,0),0
rollover=2
if mouseclick()=1
cls
load_game$="This Is The Temparary Load Game Button"
endif
else
ink rgb(255,255,255),0
rollover=1
endif
text x1,y1,load_game$
` What Happens If The Mouse Is Used. The Online Option Is Used
if mousex()>=x2 and mousex()<=x2+w2 and mousey()>=y2 and mousey()<=y2+h2
ink rgb(0,232,0),0
rollover=2
if mouseclick()=1
cls
online$="This Is The Temparary Online Button"
endif
else
ink rgb(255,255,255),0
rollover=1
endif
text x2,y2,online$
` What Happens If The Mouse Is Used. The Options Are Used
if mousex()>=x3 and mousex()<=x3+w3 and mousey()>=y3 and mousey()<=y3+h3
ink rgb(0,232,0),0
rollover=2
if mouseclick()=1
cls
options$="This Is The Temparary Options Button"
endif
else
ink rgb(255,255,255),0
rollover=1
endif
text x3,y3,options$
` What Happens If The Mouse Is Used. The Exit Option Is Used
if mousex()>=x4 and mousex()<=x4+w4 and mousey()>=y4 and mousey()<=y4+h4
ink rgb(0,232,0),0
rollover=2
if mouseclick()=1 then exit
else
ink rgb(255,255,255),0
rollover=1
endif
text x4,y4,exit$
sync
loop
Please maybe you could tell me where it goes or copy my code and add it in a snippet.
I will catch on to all this sooner or later. It will just take some time.
Thanks
SmokieMcPot
Future Company Name = Blazing Fire
Current Website Name = Blazing Fire
Future Number is Eleventy