Hopefully this is basic...
ANYWAYS! I was recently emailing baxslash about some coding help, and I GREATLY appreciate his help! It was EXTREMELY HELPFUL!
This is my problem...
I need to Print 20 different factson the screen, But im not sure how to change it from the text that he has it as.. to "fact"
It currently says.. " you've got fruit number "X" (whatever fruit you just collected)"
here is the code, and tips?
for t = 1 to NumberOfFruits : rem If I hit one of the little fruits
if Object collision(1,t + NumberOfFruits)>0
play sound 4
MyScore = MyScore + 1000 : rem How many points each little fruit is worth
` delete object t + NumberOfFruits
exclude object on t + NumberOfFruits
REM ADDED BY BAXSLASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
mess$ = "You got fruit number "+str$(t)+"!!"
displaytime = timer()+3000
REM ADDED BY BAXSLASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
next t
If Object collision(1,100)>0 : rem If I hit the super fruit
play sound 5
exclude object on 100
MyScore = MyScore + 5000 : rem How many points the super fruit is worth
REM ADDED BY BAXSLASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
mess$ = "You got the Superfruit!!"
displaytime = timer()+3000
REM ADDED BY BAXSLASH !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
endIf