Skip to content

Instantly share code, notes, and snippets.

@AHrubik
AHrubik / startup.lua
Last active August 29, 2015 14:19
Big Reactors 0.3x Wireless Battery Efficiency Script
local battery = peripheral.wrap("right") -- Wrap the battery to the right
while true do -- Loop forever
sleep(0) -- This sleeps for 5 seconds
if battery.getEnergyStored() < 100000 then -- If the reactor has less than 9900000 then
modem.transmit(10,11,"reactor_on") -- Activates the reactor
end
if battery.getEnergyStored() > 79999990 then -- If the reactor has more than 9900000 then
modem.transmit(10,11,"reactor_off") -- Deactivates the reactor
end
end
@AHrubik
AHrubik / equitas.zs
Created November 3, 2014 00:09
Minetweaker script for the Equitas modded Terrafirmacraft pack
recipes.remove(<minecraft:hay_block>);
recipes.addShaped(<minecraft:hay_block>, [[<terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>], [<terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>, <terrafirmacraft:item.Straw>]]);
recipes.remove(<CarpentersBlocks:blockCarpentersBlock>);
recipes.addShaped(<CarpentersBlocks:blockCarpentersBlock>*5, [[<terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>], [<terrafirmacraft:item.stick>, <terrafirmacraft:item.SinglePlank:*>, <terrafirmacraft:item.stick>], [<terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>, <terrafirmacraft:item.stick>]]);
recipes.remove(<CarpentersBlocks:itemCarpentersChisel>);
recipes.addShaped(<CarpentersBlocks:itemCarpentersChisel>, [[<terrafirmacraft:item.Copper Ingot>, null, null], [<CarpentersBlocks:blockCarpentersBlock>, null, null]]);
recipes.addShaped(<CarpentersBlocks:itemCarpentersChisel>, [[<terrafirmacraft:item.Tin Ingot>, null, null], [<CarpentersBlocks:

Keybase proof

I hereby claim:

  • I am Ahrubik on github.
  • I am cubeman (https://keybase.io/cubeman) on keybase.
  • I have a public key whose fingerprint is 312F 7F08 519D 6668 484E 78A6 5F1F 85FC A42D 886A

To claim this, I am signing this object:

@AHrubik
AHrubik / go.py
Created May 2, 2014 22:54
Overviewer Config File
# This is a sample config file, meant to give you an idea of how to format your
# config file and what's possible.
# Define the path to your world here. 'My World' in this case will show up as
# the world name on the map interface. If you change it, be sure to also change
# the referenced world names in the render definitions below.
worlds['Solitary'] = "C:/Users/AHrubik/Desktop/Overviewer/Solitary"
# Define where to put the output here.
outputdir = "C:/Users/AHrubik/Desktop/Overviewer/output"
@AHrubik
AHrubik / overviewerconfig.js
Created May 2, 2014 22:53
Overview Map Config
var overviewerConfig = {
"worlds": [
"Solitary - overworld",
"Solitary - DIM-1",
"Solitary - DIM1",
"Solitary - DIM_SPACESTATION2"
],
"tilesets": [
{
"spawn": [
@AHrubik
AHrubik / startup.lua
Last active August 29, 2015 14:00
Big Reactors 0.3x Computer Craft 1.6x Efficiency Script
local reactor = peripheral.wrap("right") -- Wrap the reactor to the right
while true do -- Loop forever
sleep(0) -- This sleeps for 5 seconds
if reactor.getEnergyStored() < 10000 then -- If the reactor has less than 9900000 then
reactor.setActive (true) -- Activates the reactor
end
if reactor.getEnergyStored() > 9999990 then -- If the reactor has more than 9900000 then
reactor.setActive (false) -- Deactivates the reactor
end
end
@AHrubik
AHrubik / Mod List
Last active May 21, 2016 21:14
Mod List - Equitas custom
Baubles-1.7.10-1.0.1.10
CodeChickenLib-1.7.10-1.1.3.138-universal
ForgeMultipart-1.7.10-1.2.0.345-universal
ForgeRelocation-1.7.10-0.0.1.4-universal
ForgeRelocationFMP-1.7.10-0.0.1.2-universal
MrTJPCore-1.7.10-1.1.0.33-universal
PotionExtension-1.7.10-1.1.0
[1.7.10]WailaAddonBC-1.0.1.jar
ABO-MC1.7.10-BC7.1release4.0.9.jar
AMT_Generators-1.7.10-1.4.2.jar
@AHrubik
AHrubik / backup.bat
Last active August 29, 2015 13:57 — forked from gizzmo/minecraft_backup.bat
Backup batch for non Forge Minecraft
@ECHO OFF
SETLOCAL
::Minecraft backup script
::You need to install 7-Zip first. It can be found here: http://www.7-zip.org/
::Please check the path section first before running!
::---------------------------------------------------------------------------------------------------------------------------------------------------------
::Path section
::Set this variable to your Minecraft path. It should be ok for every Windows 7 OS.