Here is what I've done.. I'm sure its possibly not exactly right.
dim answer
dim response
console.initialize
console.writeline "--------------------=>Wierdo 1.0<=---------------------------------------"
console.writeline "-------------------------------------------------------------------------"
console.writeline "--------------------BY JOSH MCGUIRE--------------------------------------"
console.writeline "-------------------------------------------------------------------------"
console.writeline "--------------------THANKS FOR PLAYING-----------------------------------"
console.writeline "-------------------------------------------------------------------------"
console.WriteLine "You wake up in an old hay barn with bars on the windows and the doors boarded shut there is a hanckerchief and some old bread on the table"
console.WriteLine "Type h for hankerchief, b for bread."
console.WriteLine
answer = console.ReadLine
response = "Very well, I see you want neither."
if answer = "b" then response = "Very well then, the bread is in your inventory."
if answer = "h" then response = "Very well then, the hankerchief is in your inventory."
if answer = "" then response = "Neither were picked up!"
console.WriteLine
console.writeline response
console.wait
console.writeline "You walk over to the door but stop half and fall to the ground, your stomach growls as if you hadn't eaten for days."
console.writeline "Type h to eat hanckerchief, b to eat the bread."
console.writeline
answer = console.ReadLine
response = "Very well, I see you want neither."
if answer = "b" then response = "Mhm..."
if answer = "h" then response = "*Cough* Yuk..."
if answer = "" then response = "So.. hungry.."
console.writeline
console.writeline Response
console.wait
console.writeline "You continue to the door. When you get to the door you try pulling on the boards nailed to it, but they want budge."
console.writeline "You may walk to any of these locations. Type w for window, Type d for doors, Type h for hay pile."
console.writeline
answer = console.readline
response = "Very well, I see you want to stay here."
if answer = "w" then response = "You walk over to the window to peer out to find that the window is boarded. You walk back over to the door."
console.writeline
console.writeline response
console.wait
console.writeline "You are standing at the door. Please choose a location. Type d for doors, Type h for hay pile."
console.writeline "Type d for doors, Type h for hay pile."
console.writeline
answer = console.readline
response = "Very well, I see you want to stay here."
if answer = "d" then response = "You are already here!!"
console.writeline
console.writeline Response
console.wait
console.writeline "You are standing at the door. Please choose a location. Type h for hay pile."
console.writeline "Type h for haypile."
console.writeline
answer = console.readline
respone = "Very well, I see that you want to stay here."
if answer = "h" then response = "You walk over to the hay and dig around to find an axe on the bottum."
console.writeline
console.writeline response
console.wait
console.writeline "You pickup the axe and walk over to the doors. You rear back and chop away untile you have hole to squeeze out oSetBackColor"
console.writeline "You can either go left or right. Type l for left, type r for right."
console.writeline
answer = console.readline
response = "Very well, I see you want to stay here."
if answer = "r" then response = "You went right"
console.writeline
console.writeline response
console.wait
console.writeline "You spot a car running with keys in the ignition."
console.writeline "Type e to enter the car."
console.writeline
answer = console.readline
response = "Very well, I see you want to stay here."
if answer = "r" then response = "You get inside the car and drive away from the farm."
console.writeline
console.writeline Resize
console.wait
console.writeline "This is the end of this path for now ( start over with a new path )"
console.wait
console.terminate
if answer = "l" then response = "You went left."
console.writeline
console.writeline Response
console.wait
console.writeline "As you round the corner to the left, you spot a man who is working on a tractor."
console.writeline "You may walk over to the man or keep left. Type w to walk"
console.writeline
answer = console.readline
response = "Very well, I see you want to stay here."
if answer = "w" then response = "You walk over to the man."
console.writeline
console.writeline Response
console.wait
console.writeline "As you walk over to the man you notice he has a gun on his belt. As soon as you walk up behind him he pulls his gun from his belt and aims it at you."
console.writeline "Choose your destiny. Type a to axe the man, type r to run back, type b to beg."
answer = console.readline
response = "You must pick"
if answer = "a" then response = "You axe the man to death. The end. ( Retry a new path )"
console.writeline
console.writeline response
console.wait
console.terminate
if answer = "b" then response = "You Pussy. The end! ( Retry a new path )"
console.writeline
console.writeline response
console.wait
console.terminate
if answer = "r" then response = "You ran back to the barn, but he did not follow."
console.writeline
console.writeline response
console.wait
console.writeline "Your only choice is to go right."
console.writeline "Type r, its your only choice."
answer = console.readline
response = "Your only choice"
if answer = "r" then response = "You went right."
console.Writeline
console.writeline response
console.wait
console.writeline "As you head to the right you spot a running car with the keys in the ignition"
console.writeline "Type e to enter the vehicle."
answer = console.readline
response = "You can only do one thing and that is get in the damn car!"
if answer = "e" then responce = "You get into the car and begin to leave the farm. As you drive off the man runs after shooting his gun blindly at you."
console.writeline
console.writeline Response
console.wait
console.writeline "Thats all for now folks! type e to exit the game."
answer = console.readline
if answer = "e" then response = "Bye - bye, thanks for playing."
console.writeline
console.writeline Response
console.wait
console.terminate-Josh





