REM Zero Bug Fiz Mind Reader Z KMD$ = COMMAND$ KMD$ = LTRIM$(KMD$) IF KMD$ = "" THEN print "Mind Read Version 1.0 By Atomic_Bios" print "Give me a hint and I will read their mind." print "usage: mread hint" END ENDIF print "They are thinking:" A$ = KMD$ A$ = LCASE$(A$) Main: L = LEN(A$) FOR EVE = 1 to L R$ = MID$(A$,EVE,1) REM in chess one letter can read thoughts REM who dies first? REM the enemy is thinking... REM in star wars one OS wins. if R$ = "a" then T$ = "Totality for always" U$ = "Fact find" V$ = "The only name" W$ = "Super woman" endif if R$ = "b" then T$ = "Maybe beyond thats best" U$ = "Weather" V$ = "The favorite desire" W$ = "Candy land" endif if R$ = "c" then T$ = "Project works carefully" U$ = "Back again with firm stand" V$ = "Temptation" W$ = "Instant calls" endif if R$ = "d" then T$ = "Decideing and doing" U$ = "Hurt foot" V$ = "Outsmart quick snaps" W$ = "Quick loops" endif if R$ = "e" then T$ = "Special item to connect" U$ = "Face truth cry baby" V$ = "Win it right" W$ = "Best warp" endif if R$ = "f" then T$ = "Forge a figure" U$ = "Sine wave" V$ = "Sure believe it" W$ = "Safety first" endif if R$ = "g" then T$ = "Going to a judge" U$ = "Best guess" V$ = "Wicked treats" W$ = "Know how" endif if R$ = "h" then T$ = "Brush and be strong" U$ = "First and only" V$ = "Dreams are wild" W$ = "Top diploma" endif if R$ = "i" then T$ = "A secret intrest" U$ = "Clever invite" V$ = "Simply win" W$ = "Invade" endif if R$ = "j" then T$ = "Find item of wonder" U$ = "Jury setup" V$ = "Put everyone in" W$ = "One chance" endif if R$ = "k" then T$ = "Feelings during it all" U$ = "Crazy clown" V$ = "Tired and sleepy" W$ = "Rock castle" endif if R$ = "l" then T$ = "Simply cant, its above" U$ = "From above" V$ = "Show everything" W$ = "Finish mark" endif if R$ = "m" then T$ = "Shame on me, a wedding" U$ = "Release poison" V$ = "Blown away" W$ = "Children" endif if R$ = "n" then T$ = "Captive faker" U$ = "Near notebook" V$ = "Wait patiently" W$ = "Warrior" endif if R$ = "o" then T$ = "Serious sending it" U$ = "Tap intrest" V$ = "Beg and plead to God" W$ = "Brain functions" endif if R$ = "p" then T$ = "Nearly at timer tick" U$ = "Flower power" V$ = "Cry to the devil" W$ = "Ultimate victory" endif if R$ = "q" then T$ = "Film of forever" U$ = "Maze plan" V$ = "Say magic words" W$ = "Heavenly lovers" endif if R$ = "r" then T$ = "Reading people" U$ = "Look who" V$ = "Be right" W$ = "Fairy tale" endif if R$ = "s" then T$ = "Wacky winner" U$ = "Peace wins" V$ = "Magical songs" W$ = "Philosopher" endif if R$ = "t" then T$ = "Positive at classes" U$ = "Tip top" V$ = "Well trained" W$ = "Formula factory" endif if R$ = "u" then T$ = "Family character" U$ = "Protest" V$ = "My only wish" W$ = "Atomic success" endif if R$ = "v" then T$ = "Will he ever call" U$ = "Before you" V$ = "Spicy dealer" W$ = "Human nature" endif if R$ = "w" then T$ = "Entire honesty" U$ = "Become me" V$ = "Finished world" W$ = "Create worlds" endif if R$ = "x" then T$ = "Fantastic and clever" U$ = "Begin here" V$ = "Mind games" W$ = "Old teacher" endif if R$ = "y" then T$ = "Holidays feats" U$ = "Do it right" V$ = "Use super heros" W$ = "Our kingdom" endif if R$ = "z" then REM ERR9???????? T$ = "Old man is proper" U$ = "Right rain" V$ = "Native warrior" W$ = "Our orbits" endif print R$; print " - "; print T$; print ". "; print U$; print ". "; print V$; print ". "; print W$; print ". " NEXT EVE