I made a text program but the screen wont scroll down as it fills up. Because of this once the text reaches the bottom you are not able to read anything after the last line on the screen. The program is for showing that the starting stat are for different race and class combinations in WOW. Please be forgiving this is my first program.
PRINT "WELCOME TO WORLD OF WARCRAFT STARTING STATS VIEWER"
GOSUB pickrace
thankyou:
PRINT "THANK YOU FOR USING THIS PROGRAM"
END
pickrace:
PRINT "Pick Race"
PRINT "1-human"
PRINT "2-night elf"
PRINT "3-dwarf"
PRINT "4-gnome"
PRINT "5-orc"
PRINT "6-troll"
PRINT "7-undead"
PRINT "8-tauren"
PRINT "9-blood elf"
PRINT "10-draenei"
INPUT race
IF race=1 THEN GOSUB human
IF race=2 THEN GOSUB nightelf
IF race=3 THEN GOSUB dwarf
IF race=4 THEN GOSUB gnome
IF race=5 THEN GOSUB orc
IF race=6 THEN GOSUB troll
IF race=7 THEN GOSUB undead
IF race=8 THEN GOSUB tauren
IF race=9 THEN GOSUB bloodelf
IF race=10 THEN GOSUB draenei
human:
PRINT "Human Base Stats Are"
strength=20
agility=20
stamina=20
intellect=20
spirt=20
PRINT "strength=20"
PRINT "agility=20"
PRINT "stamina=20"
PRINT "intellect=20"
PRINT "spirt=20"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-paladin"
PRINT "3-rogue"
PRINT "4-priest"
PRINT "5-mage"
PRINT "6-warlock"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB paladin
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB mage
IF class=6 THEN GOSUB warlock
GOSUB human
nightelf:
PRINT "Night Elf Base Stats Are"
strength=17
agility=25
stamina=19
intellect=20
spirt=20
PRINT "strength=17"
PRINT "agility=25"
PRINT "stamina=19"
PRINT "intellect=20"
PRINT "spirt=20"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-hunter"
PRINT "3-rogue"
PRINT "4-priest"
PRINT "5-mage"
PRINT "6-druid"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB hunter
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB mage
IF class=6 THEN GOSUB druid
GOSUB nightelf
dwarf:
PRINT "Dwarf Base Stats Are"
strength=22
agility=16
stamina=23
intellect=19
spirt=19
PRINT "strength=22"
PRINT "agility=16"
PRINT "stamina=23"
PRINT "intellect=19"
PRINT "spirt=19"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-paladin"
PRINT "3-rogue"
PRINT "4-priest"
PRINT "5-hunter"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB paladin
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB hunter
GOSUB dwarf
gnome:
PRINT "Gnome Base Stats Are"
strength=15
agility=23
stamina=21
intellect=23
spirt=20
PRINT "strength=15"
PRINT "agility=23"
PRINT "stamina=21"
PRINT "intellect=23"
PRINT "spirt=20"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-rogue"
PRINT "3-mage"
PRINT "4-warlock"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB rogue
IF class=3 THEN GOSUB mage
IF class=4 THEN GOSUB warlock
GOSUB gnome
orc:
PRINT "Orc Base Stats Are"
strength=23
agility=17
stamina=22
intellect=17
spirt=23
PRINT "strength=23"
PRINT "agility=17"
PRINT "stamina=22"
PRINT "intellect=17"
PRINT "spirt=23"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-hunter"
PRINT "3-rogue"
PRINT "4-shaman"
PRINT "5-warlock"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB hunter
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB shaman
IF class=5 THEN GOSUB warlock
GOSUB orc
troll:
PRINT "Troll Base Stats Are"
strength=21
agility=22
stamina=21
intellect=16
spirt=21
PRINT "strength=21"
PRINT "agility=22"
PRINT "stamina=21"
PRINT "intellect=16"
PRINT "spirt=21"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-hunter"
PRINT "3-rogue"
PRINT "4-priest"
PRINT "5-mage"
PRINT "6-shaman"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB hunter
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB mage
IF class=6 THEN GOSUB shaman
GOSUB troll
undead:
PRINT "Undead Base Stats Are"
strength=19
agility=18
stamina=21
intellect=18
spirt=25
PRINT "strength=19"
PRINT "agility=18"
PRINT "stamina=21"
PRINT "intellect=18"
PRINT "spirt=25"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-rogue"
PRINT "3-priest"
PRINT "4-mage"
PRINT "5-warlock"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB rogue
IF class=3 THEN GOSUB priest
IF class=4 THEN GOSUB mage
IF class=5 THEN GOSUB warlock
GOSUB undead
tauren:
PRINT "Tauren Base Stats Are"
strength=25
agility=15
stamina=22
intellect=15
spirt=22
PRINT "strength=25"
PRINT "agility=15"
PRINT "stamina=22"
PRINT "intellect=15"
PRINT "spirt=22"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-hunter"
PRINT "3-druid"
PRINT "4-shaman"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB hunter
IF class=3 THEN GOSUB druid
IF class=4 THEN GOSUB shaman
GOSUB tauren
bloodelf:
PRINT "Blood Elf Base Stats Are"
strength=17
agility=22
stamina=17
intellect=24
spirt=19
PRINT "strength=17"
PRINT "agility=22"
PRINT "stamina=17"
PRINT "intellect=24"
PRINT "spirt=19"
PRINT "Pick Class"
PRINT "1-hunter"
PRINT "2-paladin"
PRINT "3-rogue"
PRINT "4-priest"
PRINT "5-mage"
PRINT "6-warlock"
INPUT class
IF class=1 THEN GOSUB hunter
IF class=2 THEN GOSUB paladin
IF class=3 THEN GOSUB rogue
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB mage
IF class=6 THEN GOSUB warlock
GOSUB bloodelf
draenei:
PRINT "Draenei Base Stats Are"
strength=21
agility=17
stamina=21
intellect=21
spirt=22
PRINT "strength=21"
PRINT "agility=17"
PRINT "stamina=21"
PRINT "intellect=21"
PRINT "spirt=22"
PRINT "Pick Class"
PRINT "1-warrior"
PRINT "2-paladin"
PRINT "3-hunter"
PRINT "4-priest"
PRINT "5-mage"
PRINT "6-shaman"
INPUT class
IF class=1 THEN GOSUB warrior
IF class=2 THEN GOSUB paladin
IF class=3 THEN GOSUB hunter
IF class=4 THEN GOSUB priest
IF class=5 THEN GOSUB mage
IF class=6 THEN GOSUB shaman
GOSUB draenei
warrior:
A=strength+3
B=agility+0
C=stamina+2
D=intellect+0
E=spirt+0
PRINT "New Stats as a Warrior Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
paladin:
A=strength+2
B=agility+0
C=stamina+5
D=intellect+0
E=spirt+1
PRINT "New Stats as a Paladin Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
rogue:
A=strength+1
B=agility+3
C=stamina+1
D=intellect+0
E=spirt+0
PRINT "New Stats as a rogue Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
priest:
A=strength+0
B=agility+0
C=stamina+0
D=intellect+2
E=spirt+3
PRINT "New Stats as a priest Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
mage:
A=strength+0
B=agility+0
C=stamina+0
D=intellect+3
E=spirt+2
PRINT "New Stats as a mage Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
warlock:
A=strength+0
B=agility+0
C=stamina+1
D=intellect+4
E=spirt+2
PRINT "New Stats as a Warlock Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
hunter:
A=strength+0
B=agility+3
C=stamina+1
D=intellect+0
E=spirt+1
PRINT "New Stats as a hunter Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
druid:
A=strength+1
B=agility+0
C=stamina+0
D=intellect+2
E=spirt+2
PRINT "New Stats as a druid Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
shaman:
A=strength+1
B=agility+0
C=stamina+1
D=intellect+1
E=spirt+2
PRINT "New Stats as a Shaman Are"
PRINT "strength=",A
PRINT "agility=",B
PRINT "stamina=",C
PRINT "intellect=",D
PRINT "spirt=",E
PRINT "Would You Like To Pick an Other Class?"
INPUT "1-YES 2-NO",Reclass
IF Reclass=1 THEN RETURN
IF Reclass=2 THEN PRINT "Would You Like To Pick an Other Race?"
INPUT "1-YES 2-NO",NewRace
IF NewRace=1 THEN GOSUB pickrace
IF NewRace=2 THEN GOSUB thankyou
mod edit : use the [ c o d e ] your code here [ / c o d e ]
remove the spaces between the code tags for usage.