Poll

is minecraft dead

yes
270 (61.6%)
no
168 (38.4%)

Total Members Voted: 437

Author Topic: Minecraft Megathread; yeah its update 1.12 big whoop what about it  (Read 6814597 times)

[img]http://i.imgur.com/thj7M5D.gif[/img

Tracks? Where we're going we don't need tracks.

Anyone got any mods to recommend? I know of Terrafirma, Tekkit and DivineRPG, are there any other large mods worth looking into?

Anyone got any mods to recommend? I know of Terrafirma, Tekkit and DivineRPG, are there any other large mods worth looking into?
redpower2. it's a relatively lore-friendly mod with an absolutely massive amount of functionality, of which i've used all of in various things. and tekkit is a modpack in and of itself.

tekkit? bad boy

ftb mmmmmmmmmmmmmm


redpower2. it's a relatively lore-friendly mod
ah yes the most important feature of redpower2 is how well is adapts to minecraft's complex storyline

I downloaded FTB but I don't get any audio in-game while running the magic pack, any ideas?

jesus christ i'm trying to portforward so i can host a minecraft server but i can't login to my router or w/e

the username and password aren't admin and they're not blank, so i don't have any clue what it is

jesus christ i'm trying to portforward so i can host a minecraft server but i can't login to my router or w/e

the username and password aren't admin and they're not blank, so i don't have any clue what it is
Try admin or Admin for both.

jesus christ i'm trying to portforward so i can host a minecraft server but i can't login to my router or w/e

the username and password aren't admin and they're not blank, so i don't have any clue what it is
what's your router's manufacturer and model?

Try admin or Admin for both.
I tried, didn't work.
I tried admin as the username alone, admin as the password alone, and admin for both of them. Same with Admin. :u

what's your router's manufacturer and model?
Cisco, Linksys. I'm not sure what the model is. The link says E-1000, but the back of my router says the Model No. is WRT160N v3

Leave the username blank and for password put "admin" with out the quotes.

Edit: Here
http://www.wikihow.com/Configure-a-Linksys-WRT160N-Router

Hey Kingdaro, I need a Computercraft script that will turn on a redstone output whenever I type in "redstone on" and turn it off whenever I type "redstone off"

Hey Kingdaro, I need a Computercraft script that will turn on a redstone output whenever I type in "redstone on" and turn it off whenever I type "redstone off"
simple.


local t = term
local side = 'back' -- or whatever side your restone output is on
local input
while true do
   t.clear()
   t.setCursorPos(1,1)
   
   print 'What would you like to do?' write '> '
   input = read()
   
   if input == 'redstone on' then
      rs.setOutput(side, true)
   elseif input == 'redstone off' then
      rs.setOutput(side, false)
   end
end

Leave the username blank and for password put "admin" with out the quotes.

Edit: Here
http://www.wikihow.com/Configure-a-Linksys-WRT160N-Router
Didn't work. :(