• 0

    posted a message on ComputerCraft Program Library

    GUYS! This library now has IT'S own forum! Check the OP...


    How dare you beat me! :tongue.gif:
    Posted in: Mods Discussion
  • 0

    posted a message on [32x][October 14: v1.4 released!][Minecraft 1.3.2] DMpack (Celebrating one year with CTM!)(New pillar CTM previews on last page)
    I love this texture pack, but there is one thing I dislike about it. The iron block is has a little too much "business" going on if you know what I mean. I would rather a smoother iron look like most texture packs. This is my opinion, but everything else looks great! Keep up the good work. :biggrin.gif:
    Posted in: Resource Packs
  • 0

    posted a message on ComputerCraft Program Library
    I am putting all of my programs on my Pastebin.
    http://pastebin.com/u/Techzune

    I am making gates, clocks, RAM, etc. :biggrin.gif:

    Enjoy!
    -Techzune
    Posted in: Mods Discussion
  • 0

    posted a message on ComputerCraft Program Library
    I made a RAM program.
    By default, redstone in the front of the computer is the save button.
    Redstone in the back stops the program (Not Required).
    Redstone on the left is the input and on the right is output.


    -- RAM v1
    -- Created by: Techzune
    
    rInput = "left" -- Input to the RAM (To Be Saved)
    rOutput = "right" -- Output from the RAM (Saved)
    rReset = "front" -- Saves the input to the output.
    rStop = "back" -- Stops the program. (Optional)
    
    local rRunning = true
    
    print("RAM is now running.")
    print("Input: " .. rInput .. ". Output: " .. rOutput .. ". Save: " .. rReset .. ". Stop: " .. rStop)
    
    while rRunning do
      sleep(0.5)
      local rEvent, param = os.pullEvent()
      if rEvent == "redstone" then
        if redstone.getInput(rReset) then
          if redstone.getInput(rInput) then
            redstone.setOutput(rOutput, true)
            print("Output ON")
          else
            redstone.setOutput(rOutput, false)
            print("Output OFF")
          end
        end
        if redstone.getInput(rStop) then
          rRunning = false
          print("RAM has stopped.")
        end
      end
    end


    EDIT: v2 is on my PasteBin: http://pastebin.com/u/Techzune
    v2 removes the stop function.
    Input is the front, Output is the back.
    The Save is on the left.
    Save Continue is on the right. Save Continue repeats the Save redstone current, so computers running RAM can be put beside each other for more memory! :smile.gif:
    Posted in: Mods Discussion
  • 0

    posted a message on OperCraft -Your Favorite CIty/Freebuild Server
    OperCraft 1.7.3

    Welcome to OperCraft! Owned by Operon Technologies.

    OperCraft Server is dedicated to assisting our members through their Minecraft Adventure by bringing you the most entertaining server in Minecraftia.

    We have HIGH Anti-Grief measures, many plugins, and a Guest/Member/VIP system!


    If you have suggestions for the server, let us know!


    Join us!
    IP: minecraft.operontech.com:28065

    If you want more information, go to OperonOperCraft.com
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on OperCraft - Minecraft's Favorite CIty/Freebuild Server
    OperCraft 1.7.3

    Welcome to OperCraft! Owned by Operon Technologies.

    OperCraft Server is dedicated to assisting our members through their Minecraft Adventure by bringing you the most entertaining server in Minecraftia.

    We have HIGH Anti-Grief measures, many plugins, and a Guest/Member/VIP system!


    If you have suggestions for the server, let us know!


    Join us!
    IP: minecraft.operontech.com:28065

    If you want more information, go to OperonOperCraft.com
    Posted in: Minecraft Survival Servers (archive)
  • 0

    posted a message on OperCraft - Minecraft's Favorite CIty/Freebuild Server
    OperCraft 1.7.3

    Welcome to OperCraft! Owned by Operon Technologies.

    OperCraft Server is dedicated to assisting our members through their Minecraft Adventure by bringing you the most entertaining server in Minecraftia.

    We have HIGH Anti-Grief measures, many plugins, and a Guest/Member/VIP system!


    If you have suggestions for the server, let us know!


    Join us!
    IP: minecraft.operontech.com:28065

    If you want more information, go to OperonOperCraft.com
    Posted in: Minecraft Survival Servers (archive)
  • To post a comment, please .