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

BrisingrAerowing

Members
  • Content Count

    153
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by BrisingrAerowing

  1. A Moving Average of some sort may be of use for this. I don't use 1.7.10, so I won't be of much further help.
  2. @XyFreak I've gone ahead and updated the issue with the new information.
  3. @godsyn What MC version? Currently the only OC version with AE2 support is for 1.10.2. It hasn't been updated to newer versions yet.
  4. @godsyn Did you download the files under the stockpile directory and put them in /lib/stockpile? Those are required as well. When I get my computer back I am going to write an install script for this. I also have a few uncommited changes there, along with some initial work on a Refined Storage version.
  5. I'll take a look, but my main computer is broken right now (bad power socket) and is in for repair, so I likely won't be able to do anything for a bit.
  6. @XyFreak Once you get your computer up and running (if it isn't already), could you add Grid Controller support for Mekanism's Induction Matrix (A multiblock power storage system)?
  7. @XyFreak When you get your computer up and running again, you may want to look at the new 'getMultiblockAssembled' method in Extreme Reactors, which tells you if the multiblock is complete or not. May be useful to avoid calling methods on an invalid multiblock. Also, the crash with computers has been fixed completely in the latest versions of ER for MC 1.10.2+.
  8. I'm thinking of porting this to be a module for your new GUI system. Just thinking of it. I may not actually get to it.
  9. For anyone still using 1.10.2, Extreme Reactors just released an update for that version that fixes a lot of bugs. I'm not sure if it fixes the turbine crash bug, but it appears that the OC integration was rewritten, so that issue may no longer appear.
  10. 1.12 mods work work in 1.12.1 (other than Core Mods), so upgrading is not any issue. I have a 1.12.1 instance with several 1.12 mods installed, and it runs perfectly fine.
  11. I am working on a port of Sidoh's AE2 Stockpile program, originally for ComputerCraft. It allows for keeping a specific number of items in stock in an AE2 system, and has the ability to add and remove items without the user having to edit configuration files. I am writing this for the 1.10.2 version of OC / AE2, so it may or may not work on the 1.7.10 version. I also plan on adding ExtraCells compatibility for fluids and whatnot (I have a custom build from the ExtraCells 1.10.2 git code, because I like living on the edge). I am porting this file by file, so watch this space for new i
  12. The date a post was made (and everything else in line with it) is pushed further down than it used to be, causing it to go under the message body somewhat. Snip attached.
  13. It may be a while. I am still trying to find a 1.12 Biomes O' Plenty seed that I like. I usually end up spawning on a tiny island in the middle of a giant ocean, with no major landmasses for miles. The times I don't there are usually mostly ugly biomes near spawn (Wastelands being a major one. Too much fog that can't be removed [at least I haven't figured out how to do it]).
  14. This is actually really cool. I may mess with creating some additional drivers for this later (e.g. for Power Management [Extreme Reactors / Draconic Evolution / RFTools / etc], Fluid / Inventory management [Refined Storage / Pressure Pipes / Inventory Controller / Tank Controller / etc], and automated farming [Robots?]).
  15. Maybe Dustpuppy's Ultimate GUI would be of assistance?
  16. You probably want to use the doDaylightCycle gamerule instead of constantly setting the time to 6000.
  17. The 'require' function is for modules in your package path. 'load' and 'dofile' are for actual file paths.
  18. What minecraft version? I found a recipe dumper for 1.7.10 and 1.8, and I just updated it to 1.12.1 without knowing what I am doing. And yes, it works. The original source is on Github I am planning on forking that code and doing a release for 1.12.1. Here is the dump format: recipedumper:shaped!(w=3,h=3)(minecraft:paper:0,1)(minecraft:paper:0,1)(minecraft:paper:0,1)(minecraft:paper:0,1)(minecraft:filled_map:32767,1)(minecraft:paper:0,1)(minecraft:paper:0,1)(minecraft:paper:0,1)(minecraft:paper:0,1)->(minecraft:map:0,1) Each item has the format 'mod id':'item name':'m
  19. From looking at the event.lua code, this may be a bug in OpenOS with event.cancel and event.register. @Sangar @payonel You guys may want to look into this. The line noted above may need a null (nil?) check.
  20. I second NEI for this. I have had issues in the past with fluid and enchantment dumps (they fail due to invalid entries), but I know item and biome dumps work. I'd also like to see this project posted if / when you get it finished.
  21. According to the Internet Component Documentation there is a method called finishConnect() that ensures a connection is active and errors if the connection failed.
  22. For anyone who wants updates, there is a CurseForge Page with several versions.
  23. The files need to be under /etc/rc.d to be runnable as a service. You may want to look at some services on here as examples on how to structure your program to work with rc. Here's a good one. Basically you need: A 'start' method A 'stop' method These can run pretty much anything, but using events should work. As for the door control thing, you may want to look at my Proximity Door Daemon, which allows for automatic doors using motion sensors. It's also extensible and very configurable.
×
×
  • Create New...

Important Information

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