(09-06-2012, 11:28 AM)Hoeloe Wrote:(09-06-2012, 08:51 AM)Koh Wrote: This is starting to become a loop @o@. Is it a for, while, or do-while loop ?
while(!spriteIsPerfect)
{
offerCriticism(Sprite);
}
(09-06-2012, 12:59 PM)Crappy Green Gors Wrote: StartProgram:Yay, I'm not the only one who gets programming humor TuT!
TextWindow.Write ("Is the sprite perfect? Y/N >")
x = TextWindow.Read()
y = Text.ConvertToUpperCase (x)
If y = "Y" Then
Goto EndProgram
ElseIf y = "N" then
TextWindow.WriteLine ("Try harder!")
TextWindow.Read()
Goto StartProgram
Else
TextWindow.WriteLine ("That's not a valid answer.")
TextWindow.Read()
Goto StartProgram
EndIf
EndProgram:
TextWindow.WriteLine ("Your sprite is perfect!")
TextWindow.Read()
Well hopefully the latest version is good...I wanna move on to the next row now >u<.