Ok, so that's 2 out of 5. Thanks for them
@The one noob to rule them all-
I read the code in your e-mail and tested it out. I understand what's happening. This is the code you posted:
Healthwords$="Your health is"
Blank$=" "
health#=100
Print HealthWords$+blank$+str$(health#)
Wait 3000
Inc Health#,1
Healthwords$="Your health is now"
Print Healthwords$+blank$+str$(health#)
Everything there is correct. There is nothing wrong with that code. However, there is some thing you forgot, or maybe didn't know. Once DBPro reaches the end of your code, it automatically turns of without wait. The problem is, you didn't put a wait at the end of your program. So what DBPro is doing is turning the program off right when it hits the last line, because you didn't tell it to wait. Add 'Wait 3000' to the end of your program and it will work:
Healthwords$="Your health is"
Blank$=" "
health#=100
Print HealthWords$+blank$+str$(health#)
Wait 3000
Inc Health#,1
Healthwords$="Your health is now"
Print Healthwords$+blank$+str$(health#)
Wait 3000
Also, I see that you have:
Healthwords$="Your health is"
Blank$=" "
health#=100
Print HealthWords$+blank$+str$(health#)
To tell you the truth, you dont need a 'blank$' variable. Take out
' Blank$=" " ' and look at where you have
' Print HealthWords$+blank$+str$(health#) '. Since there is no
' blank$ ' variable anymore, replace ' +blank$+ ' with ' +" "+ '. It's the same thing and it will work. Your final code is:
Healthwords$="Your health is"
health#=100
Print HealthWords$+" "+str$(health#)
Wait 3000
Inc Health#,1
Healthwords$="Your health is now"
Print Healthwords$+" "+str$(health#)
Wait 3000
Run it, and it works the same. Another method is adding a space after ' Your health is ' and ' Your Health Is Now '. I changes your code for you again, and this is what it looks like:
Healthwords$="Your health is "
health#=100
Print HealthWords$+str$(health#)
Wait 3000
Inc Health#,1
Healthwords$="Your health is now "
Print Healthwords$+str$(health#)
Wait 3000
So there, thanks for looking at my tutorials, and good luck!
EDIT: I forgot to tell you how to put code on the forum the correct way. First, look above the typing space for your post. Look over to the right where it says ' code '. Click that, and put you code right
after the tag the comes up in your post. Once your code is in, press
' code ' again and another tag should appear but it should look slightly different than the first. When you post, look at your post and it should look like this: