Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Boards.ie Survival and FTB

1515254565783

Comments

  • Closed Accounts Posts: 226 ✭✭randomperson12


    ok thanks


  • Registered Users, Registered Users 2 Posts: 5,318 ✭✭✭gavmcg92


    :confused:

    From the minecraft website.

    I wouldn't throw the word ignorant around too much when you're looking for help yourself.

    Especially when you will eventually be asking us for permission to join our server.


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    miralize wrote: »
    What version is the server on?

    DW20 1.0.8 :)


  • Registered Users, Registered Users 2 Posts: 45 evifeno


    RIGHT! I'm off to create the bukkit myself!

    Taking forever.... grumble, grumble, grumble...


  • Registered Users, Registered Users 2 Posts: 5,318 ✭✭✭gavmcg92


    evifeno wrote: »
    RIGHT! I'm off to create the bukkit myself!

    Taking forever.... grumble, grumble, grumble...



  • Advertisement
  • Registered Users, Registered Users 2 Posts: 45 evifeno


    Gav Gav Gav my lil Xisowt, I wouldn't have it any other way ;)


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    For those who play FTB, don't try Automate a coke oven with AE, it swallowed 11k coal belong to me that I was gonna burn down. (Coulda been the server lag we had going on yesterday too, but I don't really fancy retrying it to see :v)


  • Closed Accounts Posts: 226 ✭✭randomperson12


    WHAT KIND OF STUFF IS ON YOUR SERVER BECAUSE IM GETTING MINECRAFT SOON BECAUSE THE XBOX EDITION IS VERY UNRELIABLE PLUS THE UPDATES ARE EASIER TO GET YE SHOULD ADD TNT RUN IT IS A AWESOME GAME PLUS ADD COP AND ROBBERS IF YOU DONT HAVE THEM ALREADY LOOK EM UP ON UTUBE


  • Closed Accounts Posts: 226 ✭✭randomperson12


    ALSO LOOK UP ON CAPTAIN SPALEZ A WEATHER MOD IT IS AWESOME TORNADOES GIANT TREES ETC IT IS EPIC FOR REAL


  • Registered Users, Registered Users 2 Posts: 45 evifeno


    ALSO LOOK UP ON CAPTAIN SPALEZ A WEATHER MOD IT IS AWESOME TORNADOES GIANT TREES ETC IT IS EPIC FOR REAL

    Stop shouting.

    As far as I know it's a vanilla server - with lockettes. I'm not sure what other mods are being used, but my guess is very little - hence the name 'vanilla' :P


  • Advertisement
  • Closed Accounts Posts: 226 ✭✭randomperson12


    its minecraft extreme weather captain sparklez epic tornadoesa drill mod witch is great also waves he also said that there upgrading the mod so you can surf on the waves


  • Registered Users, Registered Users 2 Posts: 555 ✭✭✭Xeyn


    Any admin about? I think there is a mod tht allows you to locate the source of lag. There has been terrible block lag over the last couple of days. Its almost unplayable at present.
    I thought it might have to do with nether pumps so I removed mine even though it was an extra utilities pump which is supposed to be teh best for reducing lag.
    Im not to savvy on all th causes but would appreciate it if someone took a look!


  • Registered Users, Registered Users 2 Posts: 6,207 ✭✭✭miralize


    Opis I think. I need to start playing again..


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Or even just give it a quick restart see if that helps! Could be entities locked up somewhere.


  • Registered Users, Registered Users 2 Posts: 555 ✭✭✭Xeyn


    Opis! That's the one. Thanks miralize. Yeah get amongst it. The new thaumcraft is awesome!


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Yes.. yes you should mir :(


  • Closed Accounts Posts: 226 ✭✭randomperson12


    minecraft realms will be new minecraft server by mojang it cost a tenner a month but you can tget it in ireland yet its alpha stage nand olny the likes of skydoesminecraft have it


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Its exclusive to Sweeden atm ;)


  • Registered Users, Registered Users 2 Posts: 6,207 ✭✭✭miralize


    minecraft realms will be new minecraft server by mojang it cost a tenner a month but you can tget it in ireland yet its alpha stage nand olny the likes of skydoesminecraft have it

    You have to be the best poster on Boards for the month. Great craic.


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Anyone here know anything about computercraft? Admin on their fourms was just ignorant, and I haven't got any help on any other forum :(


    This is the code so far (Its a simple toggle on/off)

    When it prints the change of state (Option 1 --> Option 1 On) does it stay until disabled or?
    os.unloadAPI ("bundleAPI")
    os.loadAPI ("bundleAPI")
    
    mon = peripheral.wrap("left")
    
    mon.clear()
    mon.setCursorPos(5,1)
    mon.setTextColor(1)
    mon.write("Header on line 1")
    mon.setCursorPos(1,2)
    mon.write("Please choose an option:")
    mon.setCursorPos(1,3)
    mon.setTextColor(8)
    mon.write("Option1")
    mon.setCursorPos(1,4)
    mon.setTextColor(4)
    mon.write("Option2")
    
    while true do
    event, side, xPos, yPos = os.pullEvent("monitor_touch")
       if (yPos) == 3 then
            bundleAPI.on("bottom","white")
            mon.setCursorPos(4,11)
            mon.setTextColor(16)
            mon.write("Option 1 On")
       elseif (yPos) == 4 then
            bundleAPI.on("bottom","white")
            mon.setCursorPos(4,11)
            mon.setTextColor(16)
            mon.write("Option 2 On")
       end
    end
    

    Also, adding a third option, would that just be adding another elseif statement?

    Eg:
    while true do
    event, side, xPos, yPos = os.pullEvent("monitor_touch")
       if (yPos) == 3 then
            bundleAPI.on("bottom","white")
            mon.setCursorPos(4,11)
            mon.setTextColor(16)
            mon.write("Option 5 On)
       elseif (yPos) == 4 then
            bundleAPI.on("bottom","Orange")
            mon.setCursorPos(4,11)
            mon.setTextColor(16)
            mon.write("Option 4 On")
       elseif (yPos) == 5 then
            bundleAPI.on("bottom","Green")
            mon.setCursorPos(5,11)
            mon.setTextColor(16)
            mon.write("Option 3 On")
    

    Edit, noticed a problem: It only toggles them on, how would I add it so that checks the state, and its on, turn it off and if its off turn it on?

    EDit edit:

    Slowly but surely getting this..


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 5,318 ✭✭✭gavmcg92


    WHAT KIND OF STUFF IS ON YOUR SERVER BECAUSE IM GETTING MINECRAFT SOON BECAUSE THE XBOX EDITION IS VERY UNRELIABLE PLUS THE UPDATES ARE EASIER TO GET YE SHOULD ADD TNT RUN IT IS A AWESOME GAME PLUS ADD COP AND ROBBERS IF YOU DONT HAVE THEM ALREADY LOOK EM UP ON UTUBE

    We're currently running a FTB server. You can check it out here when you have the game. Mods in the DW20 pack are listed in the launcher when you download it.


  • Closed Accounts Posts: 226 ✭✭randomperson12


    cool


  • Closed Accounts Posts: 226 ✭✭randomperson12


    gavmcg92 wrote: »
    We're currently running a FTB server. You can check it out here when you have the game. Mods in the DW20 pack are listed in the launcher when you download it.

    nice website


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Just out of curiosity.. what age are you..?


  • Registered Users, Registered Users 2 Posts: 5,318 ✭✭✭gavmcg92


    The Snipe wrote: »
    Just out of curiosity.. what age are you..?

    Hint in the name? :D jk


  • Registered Users, Registered Users 2 Posts: 6,207 ✭✭✭miralize


    gavmcg92 wrote: »
    Hint in the name? :D jk

    Now now, thats pushing it


  • Registered Users, Registered Users 2 Posts: 5,318 ✭✭✭gavmcg92


    miralize wrote: »
    Now now, thats pushing it

    Yeah, mines fake too. I'm actually 48, not 21 ;)


  • Registered Users, Registered Users 2 Posts: 2,484 ✭✭✭The Snipe


    Is there anything that can be done about this lag? Even just a restart? Its really getting unplayable, you rubberband whenever you move so you can't get anything done.


  • Closed Accounts Posts: 226 ✭✭randomperson12


    my username its just anumber that came up on the web page


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 6,207 ✭✭✭miralize


    my username its just anumber that came up on the web page

    Hmmm, that signals to me that there was a randomperson1 through 11. How did you kill them 12?


This discussion has been closed.
Advertisement