Here ya go:
cls
hide mouse
input "please select a difficulty from slow,medium,fast>";difficulty$
if difficulty$="slow"
print "slow"
else
if difficulty$="medium"
print "medium"
else
if difficulty$="fast"
print "fast"
endif
endif
endif
There was alot of stuff really botched up good. I highly suggest that you either go through a tutorial, or patch up anything in the future through the help files privided in darkbasic. Those help files have come in real handy for me.
Also, I you could make things more economical like this:
cls
hide mouse
input "please select a difficulty from slow,medium,fast>";difficulty$
if difficulty$="slow"
print difficulty$
else
if difficulty$="medium"
print difficulty$
else
if difficulty$="fast"
print difficulty$
endif
endif
endif
For the sake of everyone else, please try to be a bit more specific next time, especially with very large chunks of code. Good luck...
"Power, precision, and don't forget about speed. If you practice everyday with these things in mind... you begin to develope A FIGHTING MODE." - Fist of Legend (Jet Li)