06-19-2013, 12:54 AM
Virtual, I made this joke about Etho in LUA > (Whenever he uses computercraft, it starts to rain) Made to make you angry.
Oh yeah, I learned LUA just for this.
Code:
function pagebreak()
print("-----------------------------------")
end
rain = 0
etho = 1
if etho == 1 then
print("Bob: Hi Etho!")
print("Etho: Howdy!")
end
if rain == 0 then
rain = 1
end
pagebreak()
print("It begins to rain")
pagebreak()
if rain == 1 then
print("Bob: DAMNIT ETHO! ITS RAINING!")
print("Etho: Sorry! It seems to always rain when I code! I will stop it now...")
rain = 0
end
if rain == 0 then
print("Bob: Thank you.")
end
Oh yeah, I learned LUA just for this.