I have been study DB Pro for about 2 days since I got it.
Heres some of a text game I'm making.
` Setup Sync
sync on
sync rate 30
` Story Intro
print "Text Adventure Game"
print
print
print
print "Press Any Key To Start"
print "Press Escape To Exit"
wait key
cls
print "Text Adventure Game"
print
print
print
print "Once long ago there lived many dragons."
print "Within the dragon race was the Dark Dragons."
print "These where the most feared of all and now they have come to back to destory us all!"
print
print
print "Press Any Key To Continue..."
wait key
cls
` Ask For Name
print "Text Adventure Game"
print
print
print
print "Please Enter Your Name."
input name$
cls
` Ask For Which Race To Be
print "Text Adventure Game"
print
print
print
print name$;" Press 1 To Be A Dark Mage. Press 2 To Be A Dark Warlock."
input selected$
if selected$="1" then class$="Dark Mage"
if selected$="2" then class$="Dark Warlock"
cls
` Ask What Power To Have
print "Text Adventure Game"
print
print
print
print name$;" The great ";class$;" what power would you like?"
print "Press 1 For Fire Ball."
print "Press 2 For Dark Shadow Ball."
input selected$
if selected$="1" then power$="Fire Ball"
if selected$="2" then power$="Dark Shadow Ball"
cls
` Tell Player What There Name, Class, Power Is.
print "Text Adventure Game"
print
print
print
print name$;" You are a ";class$;" with the attack power of the ";power$
print
print
print "Press Any Key To Continue..."
wait key
cls
` Begin Part 1
print "Text Adventure Game"
print
print
print
print "Now that you have picked your race and power you can fight evil!"
print "Now I will place you in the Dark Caves."
print
print
print "Press Any Key To Continue..."
wait key
cls
` Begin Dark Caves
print "Text Adventure Game"
print
print
print
print "Dark Caves"
print "You look right and left and see two paths leading to light."
print "Which path will you take?"
print "Press 1 for Right."
print "Press 2 For Left."
input selected$
if selected$="1" then pathway$="Right"
if selected$="2" then pathway$="Left"
cls
` Dark Cave 1
print "Text Adventure Game"
print
print
print
print "Dark Caves"
print "As you begin to walk ";pathway$;" you being to see a gaint spider crawl towards you."
` End
wait key
end
Heres the exe inchase you want it.
http://d-z-s.no-ip.com/game.zip