REM Project: VooDoo Doo Doo
REM Created: Your imagination just created me
REM
REM ***** Main Source File *****
REM
set display mode 800, 600, 16
sync on; sync rate 0; hide mouse
type vdddtype
nextletter as integer
sentence as string
endtype
global vddd as vdddtype
restore voodoodoodoosays
for counter = 1 to 6
vddd.sentence = ""
read sentence$
sentencelengh = len(sentence$)
letter = 0
repeat
cls 0
if timer() > vddd.nextletter
vddd.nextletter = timer() + rnd(1000)
inc letter, 1
character$ = mid$(sentence$, letter)
vddd.sentence = vddd.sentence + character$
endif
center text screen width() / 2, screen height() / 2, vddd.sentence
sync
until letter = sentencelengh
wait 5000
next counter
end;
voodoodoodoosays:
data "Hello"
data "I'm VooDoo Doo Doo"
data "I have been browsing your forums for a while now and i have assimilated enough knowledge"
data "to begin communicating with you, i'm only able to communicate with you through code snippets"
data "I hope that with continued practice I will become as good as you guys"
data "Ooga Booga and out!"