hey guys
rem Project: Main Menu
rem Created: 19/02/2005 22:40:53
rem Author: Andrew Neale
MaxObject=10
speed#=4.5
for o=1 to MaxObject
make object plain o,50,10
for r=0 to o-1
if r>0
xrotate object o,wrapvalue(object angle x(o)+15)
move object down o,15
endif
next r
next o
position camera 0,0,-100
rotate camera 0,0,0
Selected=1
sync on
sync rate 0
do
if downkey()=1 and Move=0
Selected=Selected+1
if Selected>MaxObject
Selected=MaxObject
else
Move=150/speed#
endif
endif
if upkey()=1 and Move=0
Selected=Selected-1
if Selected<1
Selected=1
else
Move=-150/speed#
endif
endif
if Move>0
dec Move
for o=1 to MaxObject
xrotate object o,wrapvalue(object angle x(o)-0.1*speed#)
move object up o,0.1*speed#
next o
endif
if Move<0
inc Move
for o=1 to MaxObject
xrotate object o,wrapvalue(object angle x(o)+0.1*speed#)
move object down o,0.1*speed#
next o
endif
sync
loop
i got this from that andrew guy but how do i add things like images to it or background and the most important part the button when someone ;hits enter on one of the button i want it to go somewhere and another thing how do i add text to the buttons??
Games made with passion