Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

Merung

Members
  • Content Count

    3
  • Joined

  • Last visited

  • Days Won

    1

Merung last won the day on September 1 2020

Merung had the most liked content!

About Merung

  • Rank
    Junior Member

Profile Information

  • Location
    Seattle, WA

Contact Methods

  • Minecraft
    Merung_Kelsith

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Re-posted script as code, as the attachment was unable to be accessed
  2. Program I wrote to monitor my Draconic Evolution Energy Core: -- Original by Merung (October, 2018) local component = require("component") local term = require("term") local gpu = component.gpu -- Setup components if not component.isAvailable("draconic_rf_storage") then print("Draconic Energy Core not connected. Please connect computer to Energy Core with an Adapter") os.exit() end storage = component.draconic_rf_storage if not component.isAvailable("screen") then print("How do you expect to view this?") os.exit() end -- Set Resolution res_x = 120 res_y = 25 gpu.setRe
  3. @Palagius the current version (and you may have fixed it since) displays a decimal place in the output. I added a function to fix that, if you want to incorporate it: function remove_dec(num) return string.format("%.0f", num) end
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.