Page 2223 of 2549 [ 40782 posts ]  Go to page Previous  1 ... 2220, 2221, 2222, 2223, 2224, 2225, 2226 ... 2549  Next

equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

16 Apr 2013, 6:23 pm

Andras: I like a lot of things.

The weather is clearing up. I am happier right now.


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


Andras
Veteran
Veteran

User avatar

Joined: 31 Mar 2013
Age: 36
Gender: Male
Posts: 809
Location: Netherlands

17 Apr 2013, 2:11 pm

DarkRain wrote:
Chocolate is a very good thing. :)
The only downside is, is that it's not too healthy unless it's pure chocolate. WHY MUST UNHEALTHY FOOD ALWAYS BE THE MOST YUMMY! :cry:

equestriatola wrote:
Andras: I like a lot of things.

The weather is clearing up. I am happier right now.
Huh... how come you're bored so many times if you like so many things? I have pretty narrow interests but i am rarely bored.

The weather has improved here too, for once i can go outside without needing my winter jacket. :D


_________________
Self-diagnosed HFA


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

17 Apr 2013, 3:07 pm

^ Eh, the weather in my area made me listless. I am better now.


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


AspergerLiam
Veteran
Veteran

User avatar

Joined: 23 Jul 2011
Age: 27
Gender: Male
Posts: 2,705
Location: Utopia

17 Apr 2013, 10:39 pm

Zodai wrote:
Ah, Liam.

Did you hear League has a mac client now?


Yeah I have! I may get Starcraft 2 though since I like the style of that RTS


_________________
"Any cook should be able to run a country."- Lenin
"Until victory always!"- Che Guevara
"Socialism is loving humanity over money and finding human rights more valuable than property rights."- AspergerLiam


CokaCola
Veteran
Veteran

User avatar

Joined: 4 Jul 2011
Age: 30
Gender: Male
Posts: 3,301
Location: NSW, Australia

18 Apr 2013, 12:11 am

Code:

local silos = {}
silos["1"] = colors.white
silos["2"] = colors.orange
silos["3"] = colors.magenta
silos["4"] = colors.yellow

while(true) do
   term.clear()
   term.setCursorPos(1,1)
   
   print("--NUCLEAR LAUNCH FACILITY--\n")
   print("ENTER SILO #(1,2,3,4,all): ")
   local silo = read()
   print("\n")
   if(silo ~= "1" and silo ~= "2" and silo ~= "3" and silo ~= "4" and silo ~= "all") then
      print("\nINCORRECT SILO NUMBER SELECTED\n")
      read()
   else
      print("ENTER LAUNCH CODE #1: ")
      local c1 = read()
      print("\nENTER LAUNCH CODE #2: ")
      local c2 = read()
      
      if(c1 ~= "64875" or c2 ~= "97842") then
         print("\nINCORRECT CODES\n")
         read()
      else
         print("\nCOUNTDOWN: ")
         local i = 10
         while(i > 0) do
            print(tostring(i).."\n")
            sleep(1)
            i = i - 1
         end
         --prevent automated shootdown
         redstone.setBundledOutput("back", colors.lime)
         sleep(1)
         if(silo ~= "all") then
            redstone.setBundledOutput("back", silos[silo]+colors.lime)
         else
            redstone.setBundledOutput("back", silos["1"]+silo["2"]+silo["3"]+silo["4"]+colors.lime)
         end
         sleep(1)
         redstone.setBundledOutput("back", 0)
         
         print("MISSILE LAUNCHED!")
         sleep(5)
      end
   end
end

It's in minecraft so therefore it's not evil.
..Right? :lmao:


_________________
You must sleep now, Uncle Sempi!
-
Trouble finding the WP IRC chatroom on the new site?
You can find it here: http://webchat.freenode.net/?channels=wrongplanet


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

18 Apr 2013, 12:12 am

I've had a good day.


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

18 Apr 2013, 2:28 am

CokaCola wrote:
Code:

local silos = {}
silos["1"] = colors.white
silos["2"] = colors.orange
silos["3"] = colors.magenta
silos["4"] = colors.yellow

while(true) do
   term.clear()
   term.setCursorPos(1,1)
   
   print("--NUCLEAR LAUNCH FACILITY--\n")
   print("ENTER SILO #(1,2,3,4,all): ")
   local silo = read()
   print("\n")
   if(silo ~= "1" and silo ~= "2" and silo ~= "3" and silo ~= "4" and silo ~= "all") then
      print("\nINCORRECT SILO NUMBER SELECTED\n")
      read()
   else
      print("ENTER LAUNCH CODE #1: ")
      local c1 = read()
      print("\nENTER LAUNCH CODE #2: ")
      local c2 = read()
      
      if(c1 ~= "64875" or c2 ~= "97842") then
         print("\nINCORRECT CODES\n")
         read()
      else
         print("\nCOUNTDOWN: ")
         local i = 10
         while(i > 0) do
            print(tostring(i).."\n")
            sleep(1)
            i = i - 1
         end
         --prevent automated shootdown
         redstone.setBundledOutput("back", colors.lime)
         sleep(1)
         if(silo ~= "all") then
            redstone.setBundledOutput("back", silos[silo]+colors.lime)
         else
            redstone.setBundledOutput("back", silos["1"]+silo["2"]+silo["3"]+silo["4"]+colors.lime)
         end
         sleep(1)
         redstone.setBundledOutput("back", 0)
         
         print("MISSILE LAUNCHED!")
         sleep(5)
      end
   end
end

It's in minecraft so therefore it's not evil.
..Right? :lmao:


I'm not quite sure how to answer that!
Partially because don't know how to read the code. :lol:

I'm assuming this has to do with you blowing up your little brother's town in Minecraft though? :lol:


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


CokaCola
Veteran
Veteran

User avatar

Joined: 4 Jul 2011
Age: 30
Gender: Male
Posts: 3,301
Location: NSW, Australia

18 Apr 2013, 3:30 am

@Sempiternal:
Yes, that's the code I wrote for the ICBM launch terminal :lol:


_________________
You must sleep now, Uncle Sempi!
-
Trouble finding the WP IRC chatroom on the new site?
You can find it here: http://webchat.freenode.net/?channels=wrongplanet


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

18 Apr 2013, 12:21 pm

Good morning, one and all! :D


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


Andras
Veteran
Veteran

User avatar

Joined: 31 Mar 2013
Age: 36
Gender: Male
Posts: 809
Location: Netherlands

18 Apr 2013, 2:52 pm

It's already evening here. Dem time zones...

Just another normal day for me. Work, eat, bike, play video games, watch TV, visit WP and play more video games.


_________________
Self-diagnosed HFA


TenPencePiece
Veteran
Veteran

User avatar

Joined: 11 Dec 2009
Age: 30
Gender: Male
Posts: 46,000
Location: Greater Manchester, United Kingdom

18 Apr 2013, 3:57 pm

working, sitting, worrying and doing nothing was the order of the day today


_________________
I'm always here, all you have to do is ask and you shall receive


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

18 Apr 2013, 6:01 pm

Just had my tooth fixed. Great, now what am I gonna do when the bill comes? *sigh*


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


DarkRain
Veteran
Veteran

User avatar

Joined: 30 Mar 2013
Age: 46
Gender: Female
Posts: 1,657
Location: Hissing in your ear

18 Apr 2013, 6:38 pm

I want to go fishing again.



Sempiternal
Veteran
Veteran

User avatar

Joined: 13 Feb 2012
Age: 27
Gender: Female
Posts: 8,324
Location: Silicon Valley, CA

18 Apr 2013, 10:05 pm

CokaCola wrote:
@Sempiternal:
Yes, that's the code I wrote for the ICBM launch terminal :lol:


HMM. I wonder how your brother reacted to the destruction of his town. :lol:


_________________
My nephew Coke needs to eat! Obviously we're related. :lol:


equestriatola
Veteran
Veteran

User avatar

Joined: 13 Aug 2012
Gender: Male
Posts: 140,749
Location: Half of me is in the Washington state, the other Los Angeles.

18 Apr 2013, 11:03 pm

It's been an alright day for me.


_________________
LIONS-STAMPEDERS-ELKS-ROUGHRIDERS-BLUE BOMBERS-TIGER-CATS-ARGONAUTS-REDBLACKS-ALOUETTES

The Canadian Football League - What We're Made Of

Feel free to talk to me, if you wish. :)

Every day is a gift- cherish it!

"A true, true friend helps a friend in need."


CokaCola
Veteran
Veteran

User avatar

Joined: 4 Jul 2011
Age: 30
Gender: Male
Posts: 3,301
Location: NSW, Australia

19 Apr 2013, 2:36 am

Sempiternal wrote:
CokaCola wrote:
@Sempiternal:
Yes, that's the code I wrote for the ICBM launch terminal :lol:


HMM. I wonder how your brother reacted to the destruction of his town. :lol:

He actually found the giant crater quite funny :lol:


_________________
You must sleep now, Uncle Sempi!
-
Trouble finding the WP IRC chatroom on the new site?
You can find it here: http://webchat.freenode.net/?channels=wrongplanet