This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
immibis's profile picture

[MC 1.7.10] [CC 1.65] Immibis's Peripherals

Started by immibis, 31 August 2012 - 12:52 PM
immibis #1
Posted 31 August 2012 - 02:52 PM
Downloads
Download the mod from here.
Archive:
version 51.x.x for MC 1.4.5
version 50.x.x for MC 1.2.5/1.3.2/1.4.2
version 49.x.x for MC 1.2.5

Requirements: Minecraft Forge, ComputerCraft, and Immibis Core (which you can download from the same page).

RFID cards
SpoilerAn RFID card is an item that can hold up to 80 characters of data. If you are holding one anywhere in your inventory, it can be read by any computer with a connected RFID reader within 5 metres.

They can only be written once, and writers are quite expensive and slow, though readers are not.

RFID reader
Spoiler
This block reads RFID cards held by players within 5 metres. It has no GUI and can only be used from Lua code.
It can also read RFID cards inside storage carts (within 5 metres)

RFID writer
SpoilerNo card inserted:


Blank card inserted:


Non-blank card inserted:


Busy writing:

(the red line shows progress)

Right click with a RFID card in your hand to insert the card.
Right click with an empty hand to remove the card, if there is one in the writer. You cannot remove the card unless the glass cover is completely open.

RFID peripheral API
SpoilerRFID reader, if "reader" is the wrapped peripheral:

reader.scan([range])
	Starts scanning for nearby RFID cards. Returns true on success, or false and an error message on failure.
	Range is optional and defaults to 5. If specified, it must be a number between 1 and 5 inclusive, in blocks.
	This is the maximum distance between the centre of the block and the player's feet, and seems to be about
	1.4 metres when the player is standing right up against the block.
reader.isScanning() -- Returns whether the reader is currently scanning for nearby cards (true or false)
reader.getProgress() -- Returns progress, from 0 to 1, or -1 if not currently scanning.
Scans take 0.5 seconds at maximum range. At lower ranges the time is proportionally shorter (eg 0.25 seconds at 2.5m).
In previous versions, it took 1 second to scan at maximum range.

RFID readers can scan with a distance longer than 5 blocks. However, they will take proportionally longer.
At distances longer than 5 blocks, you can detect the existence of a card, but the data returned will be blank.

Events:

"rfid_detected", data, distance, side -- Queued once for each detected RFID card, before rfid_scan_done
"rfid_scan_done", side -- Queued when an RFID scan is finished.
RFID cards can only be read from players' inventories and storage minecarts.

RFID writer, if "writer" is the wrapped peripheral:

writer.encode("card data", "card label") -- Starts writing the inserted card with the given data and label. Returns true on success, or false and an error message on failure.
writer.isPresent() -- Returns whether there is an RFID card inserted (true or false)
writer.getProgress() -- Returns progress, from 0 to 1, or -1 if not currently writing.
writer.isCoded() -- Returns whether there is an RFID card inserted which has already been written (true or false)
Events:

"rfid_written", side -- Queued when an RFID writer finishes writing
Writing takes 30 seconds. When writing is complete, you will get an "rfid_written" event. Writing will abort if the chunk unloads.

If you set peripherals.adminPassword to a non-empty string in config/immibis.cfg and pass that string as a third argument to writer.encode, it will only take one tick to write, instead of 30 seconds. (Requested by DV8FromTheWorld)

RFID recipes
SpoilerRFID card recipe:


You can also craft a card with any dye to change the colour of the white tab - this is purely visual and doesn't affect anything else.

RFID reader recipe:


RFID writer recipe:

Mag-cards
SpoilerMag-cards (magnetic stripe cards) are similar to RFID cards, but they are rewritable, store slightly more data (100 chars instead of 80) and require physical contact with the machine to read or write. They're also written and read with the same device, which is cheaper than an RFID reader and much cheaper than an RFID writer.

Mag-card device
SpoilerThis is a peripheral that reads and writes mag-cards.


Right click while holding a mag-card to swipe it.

The green light shows whether the device is attached to a computer.
The yellow light shows whether the device will write (on) or read (off) the next card swiped.
The orange light is controlled through the API, and is intended to indicate that the computer is waiting for you to swipe a card.

Mag-card peripheral API
SpoilerMag-card device, if "device" is the wrapped peripheral:

reader.beginWrite("card data", "card label") -- Sets the device to write the next swiped card with the given label and data.
reader.cancelWrite() -- If the device is waiting for a card to write, cancel that (the next card will be read instead)
reader.isWaiting() -- Returns whether the device is waiting for a card to write
reader.setInsertCardLight(true/false) -- Sets the state of the orange light
Events:

"mag_write_done", side, old_data -- Queued when a card is written.
"mag_swipe", data, side -- Queued when a card is read.

Mag-card recipes
SpoilerMag-card recipe:


Like with RFID cards, you can craft a card with any dye to change its colour.

Mag-card device recipe:

Speaker
SpoilerSpeaker block
This is a peripheral that plays square waves.


Speaker peripheral API
There are two main parts to the API, the "simple API" (which lets you control the speaker directly) and the "Forth API" (which lets you upload a program to be run on clients). If you don't know Forth, don't use that part of the API - it's an advanced feature.

Simple API, if "speaker" is the wrapped speaker:

speaker.shutdown() - stops playing and stops all playing sounds
speaker.setAttenuation(db) - sets the attenuation (negative volume) in dB. A good default seems to be 20.
speaker.start(channel, frequency) - starts playing a square wave
speaker.stop(channel) - stops playing a square wave
There are 8 channels, numbered from 0 to 7.

Forth information

Speaker recipe

LAN cables
SpoilerDespite the name, these will work over any distance - even through unloaded chunks.
Network data is stored in (your world folder)/data/immibis's-peripherals-networks.dat - if you delete this, you'll need to break and replace every cable and modem before they'll work again.

LAN modem
This peripheral is the interface between a network and a computer. It must be placed on the side of a block, but will stay even if that block is removed - this allows it to be used with turtles.


LAN cable
This is the cable you can use to connect modems together.


Modem recipe


Cable recipe

This uses blue wool, not lapis blocks!

LAN messages
LAN messages are strings, similar to rednet.
Each modem can send a maximum of 10 messages per second, regardless of size, and stores up to 25 unsent messages - if you try to send more, you will receive a "Buffer full" error.

Each LAN message is addressed to a channel.
There are 128 channels which any computer can listen to, numbered from 1 to 128 ("positive channels").
By default, a computer listens to channel 1, and no other positive channels.
Channel numbers can also be below 1 ("negative channels"). If a message is addressed to a negative channel, it is received by the computer with that ID (eg, messages addressed to -5 will be received by computer 5) and also to any modems that are in "promiscuous mode," which can be set using a peripheral function.

LAN messages also carry a sender ID. Sender IDs can be faked, unless disabled in the config.

Modem API
If "modem" is a wrapped modem:

modem.send(message) - sends a message on the default channel
modem.sendChannel(channel, message) - sends a message on a channel
modem.sendFrom(channel, sender, message) - sends a message on a channel with a faked sender ID
modem.setDefaultChannel(channel) - sets the default channel for this modem
modem.getDefaultChannel() - returns the default channel for this modem
modem.setPromiscuous(boolean) - sets or clears promiscuous mode for this modem
modem.getPromiscuous() - returns true if this modem is in promiscuous mode, or false otherwise.
modem.setListening(channel, state) - starts or stops listening on a channel. state is a boolean. channel must be in the range 1 to 128.
modem.getListening(channel) - returns true if this modem is listening on a channel, or false otherwise. channel can be any number.
When a message is received, you get a lan_message event with the arguments: modem side, sender ID, channel, message

Cryptographic accelerator
Spoiler
This peripheral allows your programs to easily encrypt and decrypt things.
If you'd rather people have to write their own encryption programs, you can easily disable the recipe in the config.

Recipe


The middle slot must have 64 items. All 64 will be consumed.
This recipe will not work with automatic crafting devices.

Alternate recipe



This recipe is compatible with automatic crafting devices.

API
API documentation

Example program

Adventure map interface
SpoilerThis is like the Operator Panel or Adventure Map Peripheral, but with more stuff. It lets your computer programs edit the world.

It won't do anything if disabled in the config. Disabled by default in SMP. Uncraftable of course.

API documentation


Known bugs
The volume control (in the options menu) works a bit weirdly on the speaker, as it bypasses Minecraft's normal sound system.
Speakers can cause the client to freeze for a few seconds once per game start (possibly because it's loading something inside Java Sound)
The speaker "cone" can change brightness randomly.

License
Spoiler
Copyright (c) 2012 Alex "immibis" Campbell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


And almost forgot, a lot of the ideas and most of the textures were by ozbar11. The code was by me.
Edited on 19 December 2015 - 11:58 PM
BigSHinyToys #2
Posted 31 August 2012 - 05:31 PM
This is a cool add on . I haven't messed with it too much but this is what I have so far.

My first Mag card door.
Picture
Spoiler

Card maker code – very basic
Spoiler

local reader = peripheral.wrap("bottom")
while true do
reader.beginWrite("#1234567890","IMMBIS inc")
local event,arg1,arg2,arg3 = os.pullEvent()
if event == "mag_write_done" then
  print("card made")
end
end

Door Code
Spoiler

local mon = peripheral.wrap("back")
term.redirect(mon)
local status = {"<Enter Card>","<Rejected>","<Granted>"}
local current = 1
local combo = "#1234567890"
local lastTimer
while true do
term.clear()
term.setCursorPos(1,1)
print("Welcome tonIMMIBIS CORP")
print(status[current])
local event,arg1,arg2,arg3 = os.pullEvent()
if event == "timer" and arg1 == lastTimer then
  current = 1
  lastTimer = nil
  rs.setOutput("bottom",false)
elseif event == "mag_swipe" then
  if arg1 == combo then
   lastTimer = os.startTimer(3)
   current = 3
   rs.setOutput("bottom",true)
  else
   lastTimer = os.startTimer(3)
   current = 2
  end
end
end

Thanks immibis great add on
Cloudy #3
Posted 31 August 2012 - 06:24 PM
I love it!
Cruor #4
Posted 31 August 2012 - 07:54 PM
Woah this looks amazing, i need to test this out :)/>/> This can be quite nice on my server B)/>/>
ElvishJerricco #5
Posted 31 August 2012 - 08:20 PM
Very cool =) Question though, what is the advantage of a mag-card vs a disk drive besides the simple interface of just right clicking with the card?
Leo Verto #6
Posted 31 August 2012 - 09:51 PM
Using RFID cards we can collect even more infomations on our users, now we can also add a localisation system to the database with all the private data!
FuzzyPurp #7
Posted 31 August 2012 - 09:52 PM
Very cool =) Question though, what is the advantage of a mag-card vs a disk drive besides the simple interface of just right clicking with the card?

I think these mag cards get auto scanned while in the player's inventory and responds :)/>/>
Nice addon immibis
Kilobyte #8
Posted 31 August 2012 - 09:55 PM
THIS IS AWESOME. just imagine doors that open when you come near but not when your enemys come near it. oh man already likin it. really need to check it out
immibis #9
Posted 01 September 2012 - 01:45 AM
Very cool =) Question though, what is the advantage of a mag-card vs a disk drive besides the simple interface of just right clicking with the card?
That's their only advantage, really.

Very cool =) Question though, what is the advantage of a mag-card vs a disk drive besides the simple interface of just right clicking with the card?

I think these mag cards get auto scanned while in the player's inventory and responds :)/>/>
Nice addon immibis
RFID cards are the ones that respond from in your inventory.

THIS IS AWESOME. just imagine doors that open when you come near but not when your enemys come near it. oh man already likin it. really need to check it out
Until your enemies figure out how to copy the card!
BigSHinyToys #10
Posted 01 September 2012 - 02:28 AM
If I had the time / equipment I would do a shot for shot remake of Mission Impossible using CC this add on frames for Vault Door / moving stuff. You would need a mod that allows you to crawl through vents. and some way to lower a player by rope. but I'm shore it could be done.

Would be one hell of a mod spot light for CC and cool as hell to

Mag cards are very cool but without a hand help card swipe it will be hard to copy them.To make it harder to copy lots of cards making it store only one cards data at a time maybe.
ETHANATOR360 #11
Posted 01 September 2012 - 02:30 AM
this is so awesome im going to use this to make instant banking software
Tiin57 #12
Posted 01 September 2012 - 02:36 AM
Amazing. Well done, immibis!
ETHANATOR360 #13
Posted 01 September 2012 - 03:03 AM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	 
	  ----------------------	 
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?
immibis #14
Posted 01 September 2012 - 03:31 AM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	 
	  ----------------------	 
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
BigSHinyToys #15
Posted 01 September 2012 - 06:50 AM
So after few hours of head scratching and swearing I have finally got something cool (well think it is) to work.
Pictures
Spoiler




And here is a map download (There is other junk around this map)


I have IC and red power installed as well. red power is needed for one piece of wiring from computer to door. and ofc CC and [MC 1.2.5] [CC 1.4.1] Immibis's Peripherals

the IC and RP stuff should disappear if you arn't using those mods causing no damage to the map or the door set up*
* the wire will need to be replaced with Redstone dust if not using RP.
ETHANATOR360 #16
Posted 01 September 2012 - 02:09 PM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	
	  ----------------------	
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
so will i have to get rid of railcraft because it worked fine until i put the addon in the mods folder
immibis #17
Posted 01 September 2012 - 02:32 PM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	
	  ----------------------	
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
so will i have to get rid of railcraft because it worked fine until i put the addon in the mods folder
Remove whichever you want less for now, and ask in the RailCraft forum or thread. I'm sure CovertJaguar will fix it.
FuzzyPurp #18
Posted 01 September 2012 - 03:05 PM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	
	  ----------------------	
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
so will i have to get rid of railcraft because it worked fine until i put the addon in the mods folder

You're not using ccARP addon are you? Currently contains old apis for buildcraft, railcraft etc
Kilobyte #19
Posted 01 September 2012 - 05:16 PM
Until your enemies figure out how to copy the card!
Fair point. Still might have quite a few uses. :)/>/>
Leo Verto #20
Posted 01 September 2012 - 09:05 PM
Until your enemies figure out how to copy the card!

I'd make a more complicated system evolving daly changed passwords and even more security.
ETHANATOR360 #21
Posted 01 September 2012 - 10:15 PM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	
	  ----------------------	
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
so will i have to get rid of railcraft because it worked fine until i put the addon in the mods folder

You're not using ccARP addon are you? Currently contains old apis for buildcraft, railcraft etc
no im not using that so it must be a railcraft incompadibility
ETHANATOR360 #22
Posted 01 September 2012 - 10:28 PM
i got a crash when installing
Spoiler

52 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
mod_CodeChickenCore : Initialized (CodeChickenCore-Client 0.5.5.zip)
mod_PCcore : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_MinecraftForge : Initialized (minecraft.jar)
mod_NotEnoughItems : Initialized (minecraft.jar)
mod_Somnia : Initialized (minecraft.jar)
mod_JammyFurniture : Initialized (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
mod_ReiMinimap : Initialized ([1_2_5]ReiMinimap_v3_2_05_zip)
mod_BuildCraftCore : Initialized (buildcraft-client-A-core-3.1.5.zip)
mod_BuildCraftBuilders : Initialized (buildcraft-client-B-builders-3.1.5.zip)
mod_BuildCraftEnergy : Initialized (buildcraft-client-B-energy-3.1.5.zip)
mod_BuildCraftFactory : Initialized (buildcraft-client-B-factory-3.1.5.zip)
mod_BuildCraftTransport : Initialized (buildcraft-client-B-transport-3.1.5.zip)
mod_BuildCraftSilicon : Initialized (buildcraft-client-C-silicon-3.1.5.zip)
mod_AdditionalPipes : Initialized (buildcraft-client-DA-additionalpipes-3.1.0.zip)
mod_CCPortable : Initialized (lib)
mod_CCPrinter : Initialized (CCPrinter)
mod_ComputerCraft : Initialized (ComputerCraft1.41.zip)
mod_IC2 : Initialized (industrialcraft-2-client_1.95b.jar)
mod_RedPowerMachine : Initialized (RedPowerMachine-2.0pr5b2.zip)
mod_ccSensors : Initialized (ccSensors-client-MC125-B016.zip)
mod_ClayMan : Initialized (ClaySoldiersMod_v70.zip)
mod_CCTurtle : Initialized (ComputerCraft1.41.zip)
mod_IC2NuclearControl : Initialized (IC2NuclearControl_client_v1.1.10b.zip)
ICBM : Initialized (ICBM_v0.4.1c.zip)
mod_ImmibisCore : Initialized (immibis-core_49.2.0_for_1.2.5-client.jar)
mod_ImmibisPeripherals : Initialized (immibis-peripherals_49.0.0_for_1.2.5-client.jar)
mod_PigbearLaser : Initialized (Laser Mod 1.5.zip)
mod_LogisticsPipes : Initialized (LogisticsPipes-BC3-0.2.5B.zip)
mod_ModularForceFieldSystem : Initialized (mffs_rev7_for_1.2.5-client.zip)
mod_CompactSolars : Initialized (mod_compactsolars-client-2.3.2.10.zip)
mod_ModernTech : Initialized (ModernTech)
mod_PortalGun : Initialized (portalgun)
mod_PCdeco : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PClogic : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmachines : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCmobile : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_PCtransport : Initialized (PowerCraft_v3-4-9_mc1-2-5.zip)
mod_Railcraft : Pre-initialized (Railcraft_Client_5.4.7b.zip)
mod_RedPowerControl : Pre-initialized (RedPowerControl-2.0pr5b2.zip)
mod_RedPowerCore : Pre-initialized (RedPowerCore-2.0pr5b2.zip)
mod_RedPowerLighting : Pre-initialized (RedPowerLighting-2.0pr5b2.zip)
mod_RedPowerLogic : Pre-initialized (RedPowerLogic-2.0pr5b2.zip)
mod_RedPowerWiring : Pre-initialized (RedPowerWiring-2.0pr5b2.zip)
mod_RedPowerWorld : Pre-initialized (RedPowerWorld-2.0pr5b2.zip)
Thermal Expansion : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
TE: Factory Module : Pre-initialized (ThermalExpansion-client-1.0.4.3.zip)
mod_BasicComponents : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Universal Electricity : Pre-initialized (UniversalElectricity_v0.4.7c.zip)
Balkon's WeaponMod : Pre-initialized (WeaponMod.zip)
mod_WirelessRedstoneCore : Pre-initialized (WR-CBE Core-Client 1.2.2.3.zip)
mod_WirelessRedstoneAddons : Pre-initialized (WR-CBE Addons-Client 1.2.2.3.zip)
mod_WirelessRedstoneRedPower : Pre-initialized (WR-CBE RedPower-Client 1.2.2.1.zip)

	  Minecraft has crashed!	
	  ----------------------	
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT bd543099 --------
Generated 8/31/12 8:59 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
OpenGL: Radeon HD 6800 Series version 4.0.10243 Compatibility Profile Context, ATI Technologies Inc.
java.lang.NullPointerException
at railcraft.common.modules.ModuleCore.doFirst(ModuleCore.java:92)
at railcraft.common.modules.RailcraftModuleManager.doFirst(RailcraftModuleManager.java:157)
at railcraft.common.modules.RailcraftModuleManager.load(RailcraftModuleManager.java:77)
at mod_Railcraft.load(mod_Railcraft.java:65)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.init(ModLoaderModContainer.java:356)
at cpw.mods.fml.common.Loader.modInit(Loader.java:273)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:628)
at cpw.mods.fml.client.FMLClientHandler.onLoadComplete(FMLClientHandler.java:223)
at net.minecraft.client.Minecraft.a(Minecraft.java:429)
at net.minecraft.client.Minecraft.run(Minecraft.java:738)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT de6ce303 ----------

can i fix this or will i have to get rid of some mods?

That's a RailCraft crash…
so will i have to get rid of railcraft because it worked fine until i put the addon in the mods folder
Remove whichever you want less for now, and ask in the RailCraft forum or thread. I'm sure CovertJaguar will fix it.
is there any way you could fix the incombatibility on your side because i dont have a minecraft forum account
EDIT: oops double post
immibis #23
Posted 02 September 2012 - 12:01 AM
Remove whichever you want less for now, and ask in the RailCraft forum or thread. I'm sure CovertJaguar will fix it.
is there any way you could fix the incombatibility on your side because i dont have a minecraft forum account
EDIT: oops double post
This mod doesn't do anything with RailCraft, but I will post this in the RailCraft thread for you.
ETHANATOR360 #24
Posted 02 September 2012 - 02:56 AM
thanks
Skiouros #25
Posted 02 September 2012 - 02:58 AM
Very nice, this should make things more interesting on my server.
immibis #26
Posted 02 September 2012 - 03:54 AM
49.0.1:
* Fixed crash when selecting the mod in the mods list.
* Added optional maximum range parameter to reader.scan

See the OP for more details about the range.
FuzzyPurp #27
Posted 02 September 2012 - 08:28 AM
I'm getting the railcraft crash too. I doubt CovertJaguar will fix something for RC 1.2.5, can't this be fixed on your end, So we can use both together now?

Works now, by doing what you asked below. Not sure if im breaking something with RC now.
Edited on 02 September 2012 - 07:11 AM
immibis #28
Posted 02 September 2012 - 08:59 AM
I'm getting the railcraft crash too. I doubt CovertJaguar will fix something for RC 1.2.5, can't this be fixed on your end, So we can use both together now?
I can't fix it without any idea what causes it, and it's in Railcraft's code.
Someone said making Immibis Peripherals load after Railcraft fixes it. Try renaming the file to start with z.



49.0.1 for Bukkit re-uploaded to fix a serious problem where users would be disconnected and be unable to reconnect if they crafted or spawned either card.
rhyleymaster #29
Posted 03 September 2012 - 12:33 AM
RFID? Everyone should get one on your server witht here ID on it :D/>/>
rhyleymaster #30
Posted 03 September 2012 - 12:35 AM
Also, RFID stands for Radio-Frequency IDentification.
Bet ya didnt know that? (Not you immibis, people reading.)
xuma202 #31
Posted 03 September 2012 - 01:16 PM
Can you add a card that combines the RFID and the Mag Card. So that it can hold 2 values and can be read wirelessly and with a Mag-reader?
mrgreaper #32
Posted 03 September 2012 - 06:57 PM
awsome addon thankyou

the code im using to read the rfid is


local reader = peripheral.wrap("right")
while true do
local event,arg1,arg2,arg3 = os.pullEvent()
reader.scan(3)
if event == "rfid_detected" and arg1 == "oursecretpass" then
rs.setOutput("bottom",true)
sleep (3)
rs.setOutput("bottom",false)
else
end
end

is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?
xuma202 #33
Posted 03 September 2012 - 07:48 PM
If you add a unique id that is unchangabe to the Cards that could be read it would be possible to save the cards agains forgery. So you can create save Access area systems.
FuzzyPurp #34
Posted 03 September 2012 - 08:40 PM
changing the name of the zip(so it loads after railcraft) worked :D/>/>
Spice-King #35
Posted 04 September 2012 - 04:02 PM
I got an idea, if you don't mind. How about adding a security code to the cards? Something like this should work, where perp is a wrapped reader or writer:


perp.setSecurityCode("security code") -- Code defaults to "" on both the readers/writers and the cards, all old cards are set to "" as well.

If the codes don't match then the card just won't show up or have random junk and writes will return a failed event for each writer.
Xfel #36
Posted 04 September 2012 - 05:27 PM
I'd rather think that you just have to come up with your own solution for it. Hacking and security protection are an important part of cc after all.
immibis #37
Posted 06 September 2012 - 03:19 AM
Can you add a card that combines the RFID and the Mag Card. So that it can hold 2 values and can be read wirelessly and with a Mag-reader?
What would you use it for?

is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?
Yes. I won't give you the exact code, but here's a hint: Make a function that scans and returns true if the card was in range, or false otherwise.

CovertJaguar told me what causes the Railcraft crash. 49.0.2 should fix it.
xuma202 #38
Posted 06 September 2012 - 05:24 PM
Can you add a card that combines the RFID and the Mag Card. So that it can hold 2 values and can be read wirelessly and with a Mag-reader?
What would you use it for?

The RFID cards are great for tracking people but the problem is you can't create good door locks with them since you don't know if the person really want's to go through the door. If you combine them you could track people and have a door card. Also you have more data that you can store and the card is more secure because you could build on the fact that the two values have to correspond.
BigSHinyToys #39
Posted 06 September 2012 - 06:34 PM
The RFID cards are great for tracking people but the problem is you can't create good door locks with them since you don't know if the person really want's to go through the door. If you combine them you could track people and have a door card. Also you have more data that you can store and the card is more secure because you could build on the fact that the two values have to correspond.
the range can be set now so you can make the door only open when the player is close to it.
Leo Verto #40
Posted 06 September 2012 - 06:51 PM
Made a little more complex code using a 2 group system, I have a piston bridge and an up/down hidden piston thingy, the detector is right above the tunnel.
Any idea why this doesn't work?
Spoiler

local adminPass = "8bitgame"
local userPass  = "32bytes"
local reader = peripheral.wrap("right")
function outputSignal(side)
  if side == nil then
	sleep(20)
	return true
  else
	rs.setOutput(side, true)
	sleep(20)
	rs.setOutput(side, false)
	return true
  end
end
function scan()
  print("Scanning...")
  reader.scan()
  while true do
	local e, p = os.pullEvent()
	if e == "rfid_scan_done" then
	  break
	end
	if e == "rfid_detected" and (p == adminPass or p == userPass) then
	  local scanResult = p
	 break
	end
  end
  if scanResult == adminPass then
	print("Admin detected!")
	outputSignal("back")
  elseif scanResult == userPass then
	print("User detected!")
	outputSignal("front")
  else
	outputSignal()
  end
end
shell.run("clear")
while true do scan() end
MysticT #41
Posted 06 September 2012 - 07:10 PM
Made a little more complex code using a 2 group system, I have a piston bridge and an up/down hidden piston thingy, the detector is right above the tunnel.
Any idea why this doesn't work?
Spoiler

local adminPass = "8bitgame"
local userPass  = "32bytes"
local reader = peripheral.wrap("right")
function outputSignal(side)
  if side == nil then
	sleep(20)
	return true
  else
	rs.setOutput(side, true)
	sleep(20)
	rs.setOutput(side, false)
	return true
  end
end
function scan()
  print("Scanning...")
  reader.scan()
  while true do
	local e, p = os.pullEvent()
	if e == "rfid_scan_done" then
	  break
	end
	if e == "rfid_detected" and (p == adminPass or p == userPass) then
	  local scanResult = p
	 break
	end
  end
  if scanResult == adminPass then
	print("Admin detected!")
	outputSignal("back")
  elseif scanResult == userPass then
	print("User detected!")
	outputSignal("front")
  else
	outputSignal()
  end
end
shell.run("clear")
while true do scan() end
Remove the local from this line:

local scanResult = p
Leo Verto #42
Posted 06 September 2012 - 07:51 PM
Remove the local from this line:

local scanResult = p
Oh I see, thanks a lot!
ETHANATOR360 #43
Posted 06 September 2012 - 09:53 PM
found a new bug this happened when i clicked on it while viewing the mod through the mods button on the main menu
Spoiler

58 mods loaded
Optifine OptiFine_1.2.5_HD_C6
Minecraft Forge 3.4.9.171
FML v2.2.106.176
Forge Mod Loader version 2.2.106.176 for Minecraft 1.2.5
 mod_CodeChickenCore : Available (CodeChickenCore-Client 0.5.5.zip)
 mod_PCcore : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_MinecraftForge : Available (minecraft.jar)
 mod_NotEnoughItems : Available (minecraft.jar)
 mod_Somnia : Available (minecraft.jar)
 mod_JammyFurniture : Available (1.2.5_Jammy_Furniture_Mod_Client_V3.6.zip)
 mod_ReiMinimap : Available ([1_2_5]ReiMinimap_v3_2_05_zip)
 mod_BuildCraftCore : Available (buildcraft-client-A-core-3.1.5.zip)
 mod_BuildCraftEnergy : Available (buildcraft-client-B-energy-3.1.5.zip)
 mod_BuildCraftFactory : Available (buildcraft-client-B-factory-3.1.5.zip)
 mod_BuildCraftTransport : Available (buildcraft-client-B-transport-3.1.5.zip)
 mod_IC2 : Available (industrialcraft-2-client_1.95b.jar)
 mod_BCIC2Crossover : Available (BCIC2crossover.IB.v0.08.zip)
 mod_betterDungeons : Available (BetterDungeons.zip)
 mod_BuildCraftBuilders : Available (buildcraft-client-B-builders-3.1.5.zip)
 mod_BuildCraftSilicon : Available (buildcraft-client-C-silicon-3.1.5.zip)
 mod_AdditionalPipes : Available (buildcraft-client-DA-additionalpipes-3.1.0.zip)
 mod_CCPortable : Available (lib)
 mod_CCPrinter : Available (CCPrinter)
 mod_ComputerCraft : Available (ComputerCraft1.41.zip)
 mod_RedPowerMachine : Available (RedPowerMachine-2.0pr5b2.zip)
 mod_ccSensors : Available (ccSensors-client-MC125-B016.zip)
 mod_ClayMan : Available (ClaySoldiersMod_v70.zip)
 mod_CCTurtle : Available (ComputerCraft1.41.zip)
 mod_EE : Available (EE2ClientV1.4.6.7.jar)
 mod_RedPowerWorld : Available (RedPowerWorld-2.0pr5b2.zip)
 mod_Forestry : Available (forestry-client-A-1.4.8.7.jar)
 mod_IC2NuclearControl : Available (IC2NuclearControl_client_v1.1.10b.zip)
 ICBM : Available (ICBM_v0.4.1c.zip)
 mod_ImmibisCore : Available (immibis-core_49.2.0_for_1.2.5-client.jar)
 mod_PigbearLaser : Available (Laser Mod 1.5.zip)
 mod_LogisticsPipes : Available (LogisticsPipes-BC3-0.2.5B.zip)
 mod_ModularForceFieldSystem : Available (mffs_rev7_for_1.2.5-client.zip)
 mod_Gibbing : Available (MobAmputation1.2.5v3.zip)
 mod_Gibs : Available (MobDismemberment1.2.5v5.zip)
 mod_CompactSolars : Available (mod_compactsolars-client-2.3.2.10.zip)
 mod_ModernTech : Available (ModernTech)
 mod_PortalGun : Available (portalgun)
 mod_PCdeco : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_PClogic : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_PCmachines : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_PCmobile : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_PCtransport : Available (PowerCraft_v3-4-9_mc1-2-5.zip)
 mod_Railcraft : Available (Railcraft_Client_5.4.7b.zip)
 mod_RedPowerControl : Available (RedPowerControl-2.0pr5b2.zip)
 mod_RedPowerCore : Available (RedPowerCore-2.0pr5b2.zip)
 mod_RedPowerLighting : Available (RedPowerLighting-2.0pr5b2.zip)
 mod_RedPowerLogic : Available (RedPowerLogic-2.0pr5b2.zip)
 mod_RedPowerWiring : Available (RedPowerWiring-2.0pr5b2.zip)
 Thermal Expansion : Available (ThermalExpansion-client-1.0.4.3.zip)
 TE: Factory Module : Available (ThermalExpansion-client-1.0.4.3.zip)
 mod_BasicComponents : Available (UniversalElectricity_v0.4.7c.zip)
 Universal Electricity : Available (UniversalElectricity_v0.4.7c.zip)
 Balkon's WeaponMod : Available (WeaponMod.zip)
 mod_WirelessRedstoneCore : Available (WR-CBE Core-Client 1.2.2.3.zip)
 mod_WirelessRedstoneAddons : Available (WR-CBE Addons-Client 1.2.2.3.zip)
 mod_WirelessRedstoneRedPower : Available (WR-CBE RedPower-Client 1.2.2.1.zip)
 mod_ImmibisPeripherals : Available (zimmibis-peripherals_49.0.0_for_1.2.5-client.jar)

	  Minecraft has crashed!	 
	  ----------------------	 
Minecraft has stopped running because it encountered a problem.


--- BEGIN ERROR REPORT 82ccc5a7 --------
Generated 9/6/12 3:45 PM
Minecraft: Minecraft 1.2.5
OS: Windows 7 (amd64) version 6.1
Java: 1.7.0_05, Oracle Corporation
VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
LWJGL: 2.4.2
[failed to get system properties (java.lang.NullPointerException)]
java.lang.NullPointerException: component argument pData
 at sun.java2d.windows.GDIWindowSurfaceData.initOps(Native Method)
 at sun.java2d.windows.GDIWindowSurfaceData.<init>(Unknown Source)
 at sun.java2d.windows.GDIWindowSurfaceData.createData(Unknown Source)
 at sun.java2d.d3d.D3DScreenUpdateManager.getGdiSurface(Unknown Source)
 at sun.java2d.d3d.D3DScreenUpdateManager.createGraphics(Unknown Source)
 at sun.awt.windows.WComponentPeer.getGraphics(Unknown Source)
 at java.awt.Component.getGraphics(Unknown Source)
 at sun.awt.RepaintArea.paint(Unknown Source)
 at sun.awt.windows.WComponentPeer.handleEvent(Unknown Source)
 at java.awt.Component.dispatchEventImpl(Unknown Source)
 at java.awt.Component.dispatchEvent(Unknown Source)
 at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
 at java.awt.EventQueue.access$000(Unknown Source)
 at java.awt.EventQueue$3.run(Unknown Source)
 at java.awt.EventQueue$3.run(Unknown Source)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
 at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
 at java.awt.EventQueue$4.run(Unknown Source)
 at java.awt.EventQueue$4.run(Unknown Source)
 at java.security.AccessController.doPrivileged(Native Method)
 at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
 at java.awt.EventQueue.dispatchEvent(Unknown Source)
 at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
 at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
 at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
 at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
 at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
 at java.awt.EventDispatchThread.run(Unknown Source)
--- END ERROR REPORT 62c15bf1 ----------

ETHANATOR360 #44
Posted 07 September 2012 - 02:13 AM
now all this mod needs is phax pureBD craft support :D/>/>
FuzzyPurp #45
Posted 07 September 2012 - 03:26 AM
now all this mod needs is phax pureBD craft support :D/>/>

I'm working on it. - Immibis defaults are quite nice tho, and it's alot of items.
Reborn403 #46
Posted 07 September 2012 - 03:45 PM
hi can anyone help me out with the mag card reader, i want to make the system i figured out how to create the card i just dont know how to make it open a door please help, i have very little lua coding im currently learning but only just recently.
ETHANATOR360 #47
Posted 08 September 2012 - 12:58 AM
now all this mod needs is phax pureBD craft support :D/>/>

I'm working on it. - Immibis defaults are quite nice tho, and it's alot of items.
yes immibis defaults are nice it just looks weird with the defaults next to a phax computer
xuma202 #48
Posted 08 September 2012 - 01:02 PM
Would be cool if RFID cards would work in inventorys such as storage carts too.
immibis #49
Posted 12 September 2012 - 01:34 PM
If I can find dan200 and get permission from him to use some parts of CC, there will be smartcards.
They're computers that turn on when inserted into a reader, and can then communicate with the computer attached to the reader via the peripheral API (for computer -> card) and a new API (for card -> computer)
Leo Verto #50
Posted 12 September 2012 - 02:00 PM
If I can find dan200 and get permission from him to use some parts of CC, there will be smartcards.
They're computers that turn on when inserted into a reader, and can then communicate with the computer attached to the reader via the peripheral API (for computer -> card) and a new API (for card -> computer)
DAN!
Mandrake Fernflower #51
Posted 13 September 2012 - 02:05 AM
I made a crappy magstripe writer program

local tArgs = { ... }
if #tArgs ~= 3 then
print("CARDED - By Mandrake|Useage <card data> <card name> <side of card reader>")
end
local a = tArgs[1]
local b = tArgs[2]
local c = tArgs[3]
if c ~= "" then
local card = peripheral.wrap(c)
card.beginWrite(a,:)/>/>
read()
print("done")
else
exit()
end

feel free to fix or add onto it
immibis #52
Posted 14 September 2012 - 01:46 PM
Dan200 refused me permission to use the non-public APIs I need because

[00:40] <dan200> if you use private code, and i change the code, your users will blame me
He suggests I make them work like floppy disks instead, which is completely missing the point -.-

This doesn't rule out programmable cards, though. (Btw, I had computer-based smartcards implemented, but without textures or recipes)
immibis #53
Posted 20 September 2012 - 05:18 AM
49.0.3 allows RFID cards to be read from storage carts, and adds an "admin password" for RFID writers - if you supply the same password to writer.encode that is set in the config file, the writing will take one tick instead of 30 seconds (Requested by DV8FromTheWorld in IRC)
FuzzyPurp #54
Posted 20 September 2012 - 09:10 PM
49.0.3 allows RFID cards to be read from storage carts, and adds an "admin password" for RFID writers - if you supply the same password to writer.encode that is set in the config file, the writing will take one tick instead of 30 seconds (Requested by DV8FromTheWorld in IRC)

Sweet update!
mrgreaper #55
Posted 21 September 2012 - 05:01 PM
is there a way to trick this into working on 1.42? really miss this addon
immibis #56
Posted 22 September 2012 - 01:10 AM
is there a way to trick this into working on 1.42? really miss this addon
You cannot run MC 1.2.5 mods on MC 1.3.2, or MC 1.1, or 1.0, or 1.8, or any other MC version besides 1.2.5. Ever. (Unless someone comes up with a mod framework that allows that; AFAIK Bukkit plugins work on different versions)

However, I said I'd be updating all my mods this weekend, and it's now this weekend. So expect an update in the next few days. (when they're done)
mrgreaper #57
Posted 22 September 2012 - 03:33 PM
is there a way to trick this into working on 1.42? really miss this addon
You cannot run MC 1.2.5 mods on MC 1.3.2, or MC 1.1, or 1.0, or 1.8, or any other MC version besides 1.2.5. Ever. (Unless someone comes up with a mod framework that allows that; AFAIK Bukkit plugins work on different versions)

However, I said I'd be updating all my mods this weekend, and it's now this weekend. So expect an update in the next few days. (when they're done)

ok happy to wait, just thought if there was an easy fix i wanted to know it lol
immibis #58
Posted 27 September 2012 - 05:27 AM
50.0.0 PR1 is a prerelease for 1.3.2 and CC 1.42. As I don't have CC set up for 1.3.2 yet, it's not very tested. Report all bugs.
Smtgr14 #59
Posted 27 September 2012 - 06:06 PM
Now all I need is to find a working elevator mod.
That way I could build a nuclear missile silo (ICBM mod) deep underground that is accessable by elevator and have a mag card reader to access said elevator.


Great mod! Way better than passwords! (traps for those who aren't carring cards anyone?)
sirdabalot #60
Posted 27 September 2012 - 09:28 PM
If using this and you place any kind of wireless turtle, the game crashes.

Spoiler

		 Minecraft has crashed!
		 ----------------------
Minecraft has stopped running because it encountered a problem; Exception in server tick loop
This error has been saved to C:UsersJoeAppDataRoaming.minecraftcrash-reportscrash-2012-09-27_10.25.11-server.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT 21ee1176 --------
Generated 9/27/12 10:25 AM
- Minecraft Version: 1.3.2
- Operating System: Windows 7 (amd64) version 6.1
- Java Version: 1.7.0_02, Oracle Corporation
- Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 915037104 bytes (872 MB) / 1029046272 bytes (981 MB) up to 1029046272 bytes (981 MB)
- JVM Flags: 2 total; -Xms1024m -Xmx1024m
- FML: FML v3.1.15.378 Minecraft Forge 4.1.2.269 25 mods loaded, 25 mods active
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
BasicComponents [Basic Components] (Universal Electricity_v0.8.3.134.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Mystcraft [Mystcraft] (mystcraft-uni-1.3.2-0.9.2.01-Forge-4.0.0.247.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_GreyGoo [mod_GreyGoo] (Grey Goo Mod v1.6.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Railcraft [Railcraft] (Railcraft_6.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ExplosivesPlus [Explosives+] (Explosives+ v3.9 PreRelease 4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Paintball [Paintball] (Paintball.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
AS_Minions [Minions] (Minions_1.3.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ICBM [ICBM] (ICBM_v0.5.4.14.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ToolRack [Tool Rack] ([1.3.2] ToolRack.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_Shelf [mod_Shelf] (Shelf.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
IC2 [IndustrialCraft 2] (industrialcraft-2_1.106.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ModularForceFieldSystem [Modular ForceField System V2] (ModularForceFieldSystemV2.1.7.0.17.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
CompactSolars [Compact Solar Arrays] (mod_compactsolars-main-3.0.1.13.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.3.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ImmibisCore [Immibis Core] (immibis-core_50.0.0pr3_for_1.3.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ImmibisPeripherals [Immibis's Peripherals] (immibis-peripherals_50.0.0pr1_for_1.3.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ComputerCraft [ComputerCraft] (ComputerCraft1.42.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
CCTurtle [ComputerCraft Turtles] (ComputerCraft1.42.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_InvTweaks [Inventory Tweaks] (InvTweaks-1.43b-1.3.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_WorldEditCUI [mod_WorldEditCUI] (WorldEditCUI-1.3.2a.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
UniversalElectricity [Universal Electricity] (Universal Electricity_v0.8.3.134.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
- Is Modded: Definitely; 'forge,fml'
- Profiler Position: N/A (disabled)
- Player Count: 0 / 8; []
- World Test2 Entities: 35 total; [od['Villager'/0, l='Test2', x=-1121.50, y=5.00, z=348.50], od['Villager'/1, l='Test2', x=-1124.50, y=5.00, z=356.50], od['Villager'/2, l='Test2', x=-1118.50, y=5.00, z=355.50], mt['Pig'/3, l='Test2', x=-1044.50, y=4.00, z=472.50], mt['Pig'/4, l='Test2', x=-1041.50, y=4.00, z=476.50], mt['Pig'/5, l='Test2', x=-1043.82, y=4.00, z=481.38], mt['Pig'/6, l='Test2', x=-1039.26, y=4.00, z=479.14], mo['Chicken'/7, l='Test2', x=-1026.50, y=4.00, z=503.50], mo['Chicken'/8, l='Test2', x=-1025.50, y=4.00, z=505.50], mu['Sheep'/9, l='Test2', x=-1024.50, y=4.00, z=569.50], mu['Sheep'/10, l='Test2', x=-1025.50, y=4.00, z=576.50], mo['Chicken'/11, l='Test2', x=-1023.50, y=4.00, z=503.50], mo['Chicken'/12, l='Test2', x=-1017.59, y=4.00, z=503.54], mu['Sheep'/13, l='Test2', x=-1021.50, y=4.00, z=572.50], mu['Sheep'/14, l='Test2', x=-1023.50, y=4.00, z=571.50], mt['Pig'/15, l='Test2', x=-988.50, y=4.00, z=491.50], mt['Pig'/16, l='Test2', x=-987.50, y=4.00, z=489.50], mt['Pig'/17, l='Test2', x=-984.50, y=4.00, z=493.50], mu['Sheep'/18, l='Test2', x=-991.50, y=4.00, z=493.50], mo['Chicken'/19, l='Test2', x=-934.50, y=4.00, z=589.50], mo['Chicken'/20, l='Test2', x=-939.50, y=4.00, z=587.50], mo['Chicken'/21, l='Test2', x=-938.50, y=4.00, z=591.50], mu['Sheep'/22, l='Test2', x=-938.50, y=4.00, z=584.50], mu['Sheep'/23, l='Test2', x=-912.50, y=4.00, z=430.50], mu['Sheep'/24, l='Test2', x=-915.50, y=4.00, z=430.50], mu['Sheep'/25, l='Test2', x=-914.85, y=4.00, z=423.87], mu['Sheep'/26, l='Test2', x=-910.03, y=4.00, z=429.07], mp['Cow'/27, l='Test2', x=-902.15, y=4.00, z=600.79], mp['Cow'/28, l='Test2', x=-901.83, y=4.00, z=596.45], mp['Cow'/29, l='Test2', x=-899.50, y=4.00, z=592.17], mp['Cow'/30, l='Test2', x=-899.25, y=4.00, z=597.82], mo['Chicken'/31, l='Test2', x=-840.50, y=4.00, z=574.50], mo['Chicken'/32, l='Test2', x=-845.48, y=4.00, z=586.47], mo['Chicken'/33, l='Test2', x=-846.50, y=4.00, z=577.50], mp['Cow'/34, l='Test2', x=-844.17, y=4.00, z=579.27]]
- World Test2 Players: 0 total; []
- World Test2 Chunk Stats: ServerChunkCache: 625 Drop: 0
- Type: Integrated Server
java.lang.NoSuchMethodError: dan200.turtle.api.ITurtleAccess.getPosition()Lajs;
at dan200.turtle.shared.TurtleModem$Peripheral.createModemLightPacket(TurtleModem.java:129)
at dan200.turtle.shared.TurtleModem$Peripheral.update(TurtleModem.java:61)
at dan200.turtle.shared.TileEntityTurtle.g(TileEntityTurtle.java:2217)
at up.h(World.java:1814)
at gr.h(WorldServer.java:433)
at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:644)
at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:575)
at axv.p(IntegratedServer.java:107)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:481)
at ep.run(SourceFile:539)
--- END ERROR REPORT efa5a4a8 ----------
immibis #61
Posted 28 September 2012 - 10:50 AM
If using this and you place any kind of wireless turtle, the game crashes.

Spoiler

		 Minecraft has crashed!
		 ----------------------
Minecraft has stopped running because it encountered a problem; Exception in server tick loop
This error has been saved to C:UsersJoeAppDataRoaming.minecraftcrash-reportscrash-2012-09-27_10.25.11-server.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
--- BEGIN ERROR REPORT 21ee1176 --------
Generated 9/27/12 10:25 AM
- Minecraft Version: 1.3.2
- Operating System: Windows 7 (amd64) version 6.1
- Java Version: 1.7.0_02, Oracle Corporation
- Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 915037104 bytes (872 MB) / 1029046272 bytes (981 MB) up to 1029046272 bytes (981 MB)
- JVM Flags: 2 total; -Xms1024m -Xmx1024m
- FML: FML v3.1.15.378 Minecraft Forge 4.1.2.269 25 mods loaded, 25 mods active
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
BasicComponents [Basic Components] (Universal Electricity_v0.8.3.134.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Mystcraft [Mystcraft] (mystcraft-uni-1.3.2-0.9.2.01-Forge-4.0.0.247.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_GreyGoo [mod_GreyGoo] (Grey Goo Mod v1.6.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Railcraft [Railcraft] (Railcraft_6.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ExplosivesPlus [Explosives+] (Explosives+ v3.9 PreRelease 4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
Paintball [Paintball] (Paintball.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
AS_Minions [Minions] (Minions_1.3.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ICBM [ICBM] (ICBM_v0.5.4.14.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ToolRack [Tool Rack] ([1.3.2] ToolRack.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_Shelf [mod_Shelf] (Shelf.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
IC2 [IndustrialCraft 2] (industrialcraft-2_1.106.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ModularForceFieldSystem [Modular ForceField System V2] (ModularForceFieldSystemV2.1.7.0.17.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
CompactSolars [Compact Solar Arrays] (mod_compactsolars-main-3.0.1.13.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.3.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ImmibisCore [Immibis Core] (immibis-core_50.0.0pr3_for_1.3.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_ImmibisPeripherals [Immibis's Peripherals] (immibis-peripherals_50.0.0pr1_for_1.3.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
ComputerCraft [ComputerCraft] (ComputerCraft1.42.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
CCTurtle [ComputerCraft Turtles] (ComputerCraft1.42.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_InvTweaks [Inventory Tweaks] (InvTweaks-1.43b-1.3.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
mod_WorldEditCUI [mod_WorldEditCUI] (WorldEditCUI-1.3.2a.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
UniversalElectricity [Universal Electricity] (Universal Electricity_v0.8.3.134.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available
- Is Modded: Definitely; 'forge,fml'
- Profiler Position: N/A (disabled)
- Player Count: 0 / 8; []
- World Test2 Entities: 35 total; [od['Villager'/0, l='Test2', x=-1121.50, y=5.00, z=348.50], od['Villager'/1, l='Test2', x=-1124.50, y=5.00, z=356.50], od['Villager'/2, l='Test2', x=-1118.50, y=5.00, z=355.50], mt['Pig'/3, l='Test2', x=-1044.50, y=4.00, z=472.50], mt['Pig'/4, l='Test2', x=-1041.50, y=4.00, z=476.50], mt['Pig'/5, l='Test2', x=-1043.82, y=4.00, z=481.38], mt['Pig'/6, l='Test2', x=-1039.26, y=4.00, z=479.14], mo['Chicken'/7, l='Test2', x=-1026.50, y=4.00, z=503.50], mo['Chicken'/8, l='Test2', x=-1025.50, y=4.00, z=505.50], mu['Sheep'/9, l='Test2', x=-1024.50, y=4.00, z=569.50], mu['Sheep'/10, l='Test2', x=-1025.50, y=4.00, z=576.50], mo['Chicken'/11, l='Test2', x=-1023.50, y=4.00, z=503.50], mo['Chicken'/12, l='Test2', x=-1017.59, y=4.00, z=503.54], mu['Sheep'/13, l='Test2', x=-1021.50, y=4.00, z=572.50], mu['Sheep'/14, l='Test2', x=-1023.50, y=4.00, z=571.50], mt['Pig'/15, l='Test2', x=-988.50, y=4.00, z=491.50], mt['Pig'/16, l='Test2', x=-987.50, y=4.00, z=489.50], mt['Pig'/17, l='Test2', x=-984.50, y=4.00, z=493.50], mu['Sheep'/18, l='Test2', x=-991.50, y=4.00, z=493.50], mo['Chicken'/19, l='Test2', x=-934.50, y=4.00, z=589.50], mo['Chicken'/20, l='Test2', x=-939.50, y=4.00, z=587.50], mo['Chicken'/21, l='Test2', x=-938.50, y=4.00, z=591.50], mu['Sheep'/22, l='Test2', x=-938.50, y=4.00, z=584.50], mu['Sheep'/23, l='Test2', x=-912.50, y=4.00, z=430.50], mu['Sheep'/24, l='Test2', x=-915.50, y=4.00, z=430.50], mu['Sheep'/25, l='Test2', x=-914.85, y=4.00, z=423.87], mu['Sheep'/26, l='Test2', x=-910.03, y=4.00, z=429.07], mp['Cow'/27, l='Test2', x=-902.15, y=4.00, z=600.79], mp['Cow'/28, l='Test2', x=-901.83, y=4.00, z=596.45], mp['Cow'/29, l='Test2', x=-899.50, y=4.00, z=592.17], mp['Cow'/30, l='Test2', x=-899.25, y=4.00, z=597.82], mo['Chicken'/31, l='Test2', x=-840.50, y=4.00, z=574.50], mo['Chicken'/32, l='Test2', x=-845.48, y=4.00, z=586.47], mo['Chicken'/33, l='Test2', x=-846.50, y=4.00, z=577.50], mp['Cow'/34, l='Test2', x=-844.17, y=4.00, z=579.27]]
- World Test2 Players: 0 total; []
- World Test2 Chunk Stats: ServerChunkCache: 625 Drop: 0
- Type: Integrated Server
java.lang.NoSuchMethodError: dan200.turtle.api.ITurtleAccess.getPosition()Lajs;
at dan200.turtle.shared.TurtleModem$Peripheral.createModemLightPacket(TurtleModem.java:129)
at dan200.turtle.shared.TurtleModem$Peripheral.update(TurtleModem.java:61)
at dan200.turtle.shared.TileEntityTurtle.g(TileEntityTurtle.java:2217)
at up.h(World.java:1814)
at gr.h(WorldServer.java:433)
at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:644)
at net.minecraft.server.MinecraftServer.p(MinecraftServer.java:575)
at axv.p(IntegratedServer.java:107)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:481)
at ep.run(SourceFile:539)
--- END ERROR REPORT efa5a4a8 ----------

Will be fixed soon. For now, delete the dan200 folder from Immibis Core.
sirdabalot #62
Posted 28 September 2012 - 10:58 AM
Will be fixed soon. For now, delete the dan200 folder from Immibis Core.

Seems to work, thanks! :P/>/>
Leo Verto #63
Posted 28 September 2012 - 01:00 PM
Now all I need is to find a working elevator mod.
That way I could build a nuclear missile silo (ICBM mod) deep underground that is accessable by elevator and have a mag card reader to access said elevator.
Great idea, already thought of combining CC and ICBM, I'd like to help, I could also make a server!
sirdabalot #64
Posted 28 September 2012 - 04:07 PM
is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?

I did it like this:

Spoiler

scanner = peripheral.wrap("bottom")
term.clear()
term.setCursorPos(1,1)
w, l = term.getSize()
correctcode = "19960812"
opendoor = 0
function printMiddle(str)
term.setCursorPos(((w/2) - (#str/2)), l/2)
write(str)
end
function checkDoor()
if opendoor == 0 then
  rs.setOutput("back", false)
elseif opendoor == 1 then
  rs.setOutput("back", true)
end
end
printMiddle("Scanning...")
while true do
scanner.scan(2)
event, data = os.pullEvent()
if event == "rfid_detected" and data == "19960812" then
  opendoor = 1
else
  opendoor = 0
end
checkDoor()
sleep (0.1)
end

You might have guessed I'm not the best programmer ever. :P/>/>
mrgreaper #65
Posted 28 September 2012 - 04:32 PM
is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?

I did it like this:

Spoiler

scanner = peripheral.wrap("bottom")
term.clear()
term.setCursorPos(1,1)
w, l = term.getSize()
correctcode = "19960812"
opendoor = 0
function printMiddle(str)
term.setCursorPos(((w/2) - (#str/2)), l/2)
write(str)
end
function checkDoor()
if opendoor == 0 then
  rs.setOutput("back", false)
elseif opendoor == 1 then
  rs.setOutput("back", true)
end
end
printMiddle("Scanning...")
while true do
scanner.scan(2)
event, data = os.pullEvent()
if event == "rfid_detected" and data == "19960812" then
  opendoor = 1
else
  opendoor = 0
end
checkDoor()
sleep (0.1)
end

You might have guessed I'm not the best programmer ever. :P/>/>

thats pretty snazy, just waiting for this to be 1.3.2 (less crashy) then ill use that thankyou
immibis #66
Posted 29 September 2012 - 05:00 AM
is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?

I did it like this:

Spoiler

scanner = peripheral.wrap("bottom")
term.clear()
term.setCursorPos(1,1)
w, l = term.getSize()
correctcode = "19960812"
opendoor = 0
function printMiddle(str)
term.setCursorPos(((w/2) - (#str/2)), l/2)
write(str)
end
function checkDoor()
if opendoor == 0 then
  rs.setOutput("back", false)
elseif opendoor == 1 then
  rs.setOutput("back", true)
end
end
printMiddle("Scanning...")
while true do
scanner.scan(2)
event, data = os.pullEvent()
if event == "rfid_detected" and data == "19960812" then
  opendoor = 1
else
  opendoor = 0
end
checkDoor()
sleep (0.1)
end

You might have guessed I'm not the best programmer ever. :P/>/>

thats pretty snazy, just waiting for this to be 1.3.2 (less crashy) then ill use that thankyou

Forgot to update the title. There is a 1.3.2 version. Fixed now.
sirdabalot #67
Posted 29 September 2012 - 08:32 AM
Forgot to update the title. There is a 1.3.2 version. Fixed now.

Thanks for the very swift update from 1.2.5. :P/>/>
immibis #68
Posted 02 October 2012 - 09:34 AM
50.0.3 should fix labels being invisible in 1.3.2 SMP.
Beetwaaf #69
Posted 04 October 2012 - 03:35 PM
I'm new to cc and don't know how to make a rfid writer so if someone could help it would be greatly appreciated.
samdeman22 #70
Posted 04 October 2012 - 05:28 PM
If I had the time / equipment I would do a shot for shot remake of Mission Impossible using CC this add on frames for Vault Door / moving stuff. You would need a mod that allows you to crawl through vents. and some way to lower a player by rope. but I'm shore it could be done.

Would be one hell of a mod spot light for CC and cool as hell to

Mag cards are very cool but without a hand help card swipe it will be hard to copy them.To make it harder to copy lots of cards making it store only one cards data at a time maybe.

You should seriously look at the smartmoving mod then, it allows you to crawl, climb, swim properly and monkeybar etc. There are also alot of rope mods out there, that when you place the rope it lowers until it hits the floor.
FunshineX #71
Posted 05 October 2012 - 12:55 AM
Spotlight/Tutorial on this peripheral:
[media]http://www.youtube.com/watch?v=ECn3L5hQHGA[/media]
Mr. Fang #72
Posted 05 October 2012 - 01:05 AM
Spotlight/Tutorial on this peripheral:
[media]http://www.youtube.com/watch?v=ECn3L5hQHGA[/media]
LOL i watched that b4 it got here and it is GOOD
etopsirhc #73
Posted 05 October 2012 - 08:03 AM
i gotta ask , why is the card reader so big? i mean hell irl its a small chip , a power source ( some circuitry ) and a loop of copper wire.
and all it does is send out X freq, and listen on Y freq where Y a fraction of X ( cause the freq sent to the card powers it )
MysticT #74
Posted 06 October 2012 - 02:12 AM
i gotta ask , why is the card reader so big? i mean hell irl its a small chip , a power source ( some circuitry ) and a loop of copper wire.
and all it does is send out X freq, and listen on Y freq where Y a fraction of X ( cause the freq sent to the card powers it )
But real life is not made by blocks :(/>/>
wjykk #75
Posted 06 October 2012 - 07:44 AM
I can't for the life of me get this thing to run. I'm using it with Minecraft 1.2.5 (because I'm using Technic and too lazy to do it myself and blah blah blah) with version 49 and followed the instructions… but I just get a white screen.

Full log at http://pastebin.com/rP9nBk7J, but it's rather long. Some points of interest include that it crashes as soon as the peripherals mod is being initialized, and if I take it out but leave the core mod, it starts up fine. I don't think it has anything to do with Railcraft anymore, but just in case I added a "z_" to the start of both mods (i.e. core and peripherals). Any help?
immibis #76
Posted 08 October 2012 - 02:27 AM
I can't for the life of me get this thing to run. I'm using it with Minecraft 1.2.5 (because I'm using Technic and too lazy to do it myself and blah blah blah) with version 49 and followed the instructions… but I just get a white screen.

Full log at http://pastebin.com/rP9nBk7J, but it's rather long. Some points of interest include that it crashes as soon as the peripherals mod is being initialized, and if I take it out but leave the core mod, it starts up fine. I don't think it has anything to do with Railcraft anymore, but just in case I added a "z_" to the start of both mods (i.e. core and peripherals). Any help?

There's no crash in that log. If that's FML's log, can you post your launcher log as well? (in .techniclauncherlogslauncher_0.log)
rangerobotic #77
Posted 10 October 2012 - 01:19 AM
I'm kind of new at programming, and i'm trying to use MagStrip cards to open a door, but I can't even write data on the card. I've wrote this program to write on the cards:

reader = peripheral.wrap("left")
term.clear()
term.setCursorPos(1,1)
print("Enter the card password")
data = read()
term.clear()
term.setCursorPos(1,1)
print("Enter the card name")
label = read()
reader.beginWrite(data,label)
os.pullEvent("mag_writer_done")
sleep(1)
end

but when I try to run it the computer says:

bios:206: [string "MagWriter"]:19: '<eof>' expected

can someone tell me what i'm doing wrong?
rhyleymaster #78
Posted 10 October 2012 - 04:24 AM
awsome addon thankyou

the code im using to read the rfid is


local reader = peripheral.wrap("right")
while true do
local event,arg1,arg2,arg3 = os.pullEvent()
reader.scan(3)
if event == "rfid_detected" and arg1 == "oursecretpass" then
rs.setOutput("bottom",true)
sleep (3)
rs.setOutput("bottom",false)
else
end
end

is there anyway i can change it so that for as long the rfid with the corract password is present the door is open but the minute its not detected the door shuts?


Possibly create a loop so that when its not reading its on redstone.setOutput("side",false)
etopsirhc #79
Posted 11 October 2012 - 07:08 AM
hey immibis , ever thought of making a chunck loader peripheral ?
you know something that would let some one on a server run a turtle while offline and never have to worry about it being deleted for moving into an unloaded chunk
or if that was fixed just keep working properly while offline and not stop
TecmagDiams #80
Posted 11 October 2012 - 05:26 PM
I actually really love the RFID cards, and I love the idea behind the Mag cards, my only problem with this is that there is no way to properly contain a Mag Card in an environment. Would it be possible to change or add something so that we could take a Mag Card, read from it, write to it, and THEN give it back to the user?

I guess to explain my point I'll give a quick example:
Want to make store credit with the cards? Awesome, perfect use of Mag Cards! Person has card with 10 units of money on it. They swipe the card and the machine reads the 10 units, they buy something for 2, and then must swipe the card again to pay (As the card must now be written as 10-2, aka 8) and get their item. Everything is fine up to this last step… If they say, had, a second card and swiped THIS card at this point, they now have 10 units of money on their original card, and 8 on their new card. They bought something and earned 8. There is NO way to protect this either, because you write blindly to the next inserted card, you can't read it and check, because it always blindly waits to write… I think it would be nice if it worked similar to the RFID writer, you would slip the card in it, and it would suck the card in, and when it was done it would spit it out after any reading/writing it wanted to do.
faubiguy #81
Posted 11 October 2012 - 09:18 PM
I actually really love the RFID cards, and I love the idea behind the Mag cards, my only problem with this is that there is no way to properly contain a Mag Card in an environment. Would it be possible to change or add something so that we could take a Mag Card, read from it, write to it, and THEN give it back to the user?

I guess to explain my point I'll give a quick example:
Want to make store credit with the cards? Awesome, perfect use of Mag Cards! Person has card with 10 units of money on it. They swipe the card and the machine reads the 10 units, they buy something for 2, and then must swipe the card again to pay (As the card must now be written as 10-2, aka 8) and get their item. Everything is fine up to this last step… If they say, had, a second card and swiped THIS card at this point, they now have 10 units of money on their original card, and 8 on their new card. They bought something and earned 8. There is NO way to protect this either, because you write blindly to the next inserted card, you can't read it and check, because it always blindly waits to write… I think it would be nice if it worked similar to the RFID writer, you would slip the card in it, and it would suck the card in, and when it was done it would spit it out after any reading/writing it wanted to do.

The solution to this is to store account numbers on the cards, then keep the amount of credit in a database of account numbers. User swipes card with his account number, database reads 10 credit from card, updates to 8 units, all in one swipe. Even with the read and write in one operation, they could still just make as many copies of the card with 10 units on it as they want.

I'm not denying that this feature could be useful for other things
LucasUK #82
Posted 16 October 2012 - 12:30 AM
any chance of a upgraded minecart block with RFID slot? :D/>/>
GopherAtl #83
Posted 16 October 2012 - 12:39 AM
any chance of a upgraded minecart block with RFID slot? :D/>/>
49.0.3 allows RFID cards to be read from storage carts […]

If you want to route players in carts the same way, just give them RFID "tickets" to carry
LucasUK #84
Posted 17 October 2012 - 06:37 PM
Omg nice thanks so much, sorry for not reading everything! Might want to update the OP as it mentions RFID card held by players.

Thnx
The_Scary_One #85
Posted 18 October 2012 - 06:26 PM
Is there a way for the computer to detect the name of the RFID cards?
immibis #86
Posted 22 October 2012 - 03:44 AM
Is there a way for the computer to detect the name of the RFID cards?
No - the label is write-only.
The_Scary_One #87
Posted 23 October 2012 - 03:40 AM
Is there a way for the computer to detect the name of the RFID cards?
No - the label is write-only.

Dammit! Thanks anyway ^_^/>/>
Shnupbups #88
Posted 23 October 2012 - 10:34 PM
1.45 works with this. YAY! I love mag cards. On a multiplayer server, my company ObsidiInc. uses mag cards cause they are AWESOME!
immibis #89
Posted 29 October 2012 - 04:01 AM
Updated to 1.4.2.
sirdabalot #90
Posted 29 October 2012 - 09:19 AM
Getting this with the 1.4.2 version:

Spoiler

java.lang.NullPointerException
	at immibis.core.Config.getBlockID(Config.java:71)
	at immibis.core.api.IDAllocator.RegisterBlockID(IDAllocator.java:12)
	at immibis.ccperiphs.mod_ImmibisPeripherals.load(mod_ImmibisPeripherals.java:61)
	at immibis.ccperiphs.mod_ImmibisPeripherals._init(mod_ImmibisPeripherals.java:30)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
	at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
	at com.google.common.eventbus.EventBus.post(EventBus.java:268)
	at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
	at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
	at com.google.common.eventbus.EventBus.post(EventBus.java:268)
	at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
	at cpw.mods.fml.common.Loader.initializeMods(Loader.java:651)
	at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
	at net.minecraft.client.Minecraft.a(Minecraft.java:465)
	at net.minecraft.client.Minecraft.run(Minecraft.java:752)
	at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 3be3c3b3 ----------


I hope it's not another one of my stupid mistakes.
immibis #91
Posted 31 October 2012 - 07:09 AM
Getting this with the 1.4.2 version:

Spoiler

java.lang.NullPointerException
	at immibis.core.Config.getBlockID(Config.java:71)
	at immibis.core.api.IDAllocator.RegisterBlockID(IDAllocator.java:12)
	at immibis.ccperiphs.mod_ImmibisPeripherals.load(mod_ImmibisPeripherals.java:61)
	at immibis.ccperiphs.mod_ImmibisPeripherals._init(mod_ImmibisPeripherals.java:30)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
	at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
	at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
	at com.google.common.eventbus.EventBus.post(EventBus.java:268)
	at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
	at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
	at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
	at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
	at com.google.common.eventbus.EventBus.post(EventBus.java:268)
	at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
	at cpw.mods.fml.common.Loader.initializeMods(Loader.java:651)
	at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
	at net.minecraft.client.Minecraft.a(Minecraft.java:465)
	at net.minecraft.client.Minecraft.run(Minecraft.java:752)
	at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 3be3c3b3 ----------
It wasn't, it was a bug. Update Immibis Core if you haven't already.

When it's compiled and uploaded, 50.1.1 removes tape drives (which weren't meant to be there due to not actually being implemented)


I hope it's not another one of my stupid mistakes.
sirdabalot #92
Posted 31 October 2012 - 01:10 PM
Now getting this:

Spoiler

java.lang.IllegalArgumentException: Illegal object for naming null
    at cpw.mods.fml.common.registry.LanguageRegistry.addNameForObject(LanguageRegistry.java:93)
    at ModLoader.addName(ModLoader.java:183)
    at ModLoader.addName(ModLoader.java:171)
    at immibis.ccperiphs.mod_ImmibisPeripherals.load(mod_ImmibisPeripherals.java:84)
    at immibis.ccperiphs.mod_ImmibisPeripherals._init(mod_ImmibisPeripherals.java:30)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
    at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
    at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
    at com.google.common.eventbus.EventBus.post(EventBus.java:268)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
    at cpw.mods.fml.common.Loader.initializeMods(Loader.java:651)
    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
    at net.minecraft.client.Minecraft.a(Minecraft.java:465)
    at net.minecraft.client.Minecraft.run(Minecraft.java:752)
    at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 68919ecd ----------
LucasUK #93
Posted 31 October 2012 - 09:05 PM
I get this 50.1.1: (client - server also crashes, log available on request)

EDIT - Im using 50.1.0 no problems :P/>/>


SpoilerMinecraft has crashed!
———————-
Minecraft has stopped running because it encountered a problem; Failed to start game
This error has been saved to C:UsersLukeAppDataRoaming.minecraftcrash-reportscrash-2012-10-31_21.04.08-client.txt for your convenience. Please include a copy of this file if you report this crash to anyone.
— BEGIN ERROR REPORT c32983bf ——–
Generated 31/10/12 21:04
- Minecraft Version: 1.4.2
- Operating System: Windows Vista (amd64) version 6.0
- Java Version: 1.7.0_04, Oracle Corporation
- Java VM Version: Java HotSpot™ 64-Bit Server VM (mixed mode), Oracle Corporation
- Memory: 56322600 bytes (53 MB) / 129761280 bytes (123 MB) up to 2062286848 bytes (1966 MB)
- JVM Flags: 2 total; -Xincgc -Xmx2000m
- AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
- FML: MCP v7.19 FML v4.2.8.424 Minecraft Forge 6.0.1.349 Optifine OptiFine_1.4.2_HD_U_A7 28 mods loaded, 28 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
mod_CodeChickenCore [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
mod_NotEnoughItems [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized
mod_ImmibisCore [Immibis Core] (immibis-core_50.2.1_for_1.4.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized
mod_AdvancedRepulsionSystems [Advanced Repulsion Systems] (adv-repulsion-systems_50.2.0_for_1.4.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Core [BuildCraft] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Builders [BC Builders] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Energy [BC Energy] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Factory [BC Factory] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Transport [BC Transport] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
BuildCraft|Silicon [BC Silicon] (buildcraft-A-3.1.8.0.jar) Unloaded->Constructed->Pre-initialized->Initialized
IC2 [IndustrialCraft 2] (industrialcraft-2_1.108.59-lf.jar) Unloaded->Constructed->Pre-initialized->Initialized
CompactSolars [Compact Solar Arrays] (compactsolars-universal-3.1.1.16.zip) Unloaded->Constructed->Pre-initialized->Initialized
ComputerCraft [ComputerCraft] (ComputerCraft1.46.zip) Unloaded->Constructed->Pre-initialized->Initialized
CCTurtle [ComputerCraft Turtles] (ComputerCraft1.46.zip) Unloaded->Constructed->Pre-initialized->Initialized
Forestry [Forestry for Minecraft] (forestry-A-1.6.0.0pre5.jar) Unloaded->Constructed->Pre-initialized->Initialized
IC2NuclearControl [Nuclear Control] (IC2NuclearControl-1.4.1.zip) Unloaded->Constructed->Pre-initialized->Initialized
mod_ImmibisPeripherals [Immibis's Peripherals] (immibis-peripherals_50.1.1_for_1.4.2-joined.jar) Unloaded->Constructed->Pre-initialized->Errored
IronChest [Iron Chest] (ironchest-universal-4.2.1.120.zip) Unloaded->Constructed->Pre-initialized->Initialized
MFR_CompatGrass [MFR Grass Fertilizer Addon] (MineFactoryReloaded_1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
MFReloaded [Minefactory Reloaded] (MineFactoryReloaded_1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
NetherOres [Nether Ores] (NetherOres 1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
PowerConverters [Power Converters] (PowerConverters 1.4.2.zip) Unloaded->Constructed->Pre-initialized->Initialized
Railcraft [Railcraft] (Railcraft_6.7.0.0.zip) Unloaded->Constructed->Pre-initialized->Initialized
TreeCapitator [TreeCapitator] (Treecapitator.FML.1.4.2.r02.Universal.zip) Unloaded->Constructed->Pre-initialized->Initialized
mod_TubeStuff [TubeStuff] (tubestuff_50.1.0_for_1.4.2-joined.jar) Unloaded->Constructed->Pre-initialized->Initialized
- LWJGL: 2.4.2
- OpenGL: GeForce GTX 650/PCIe/SSE2 GL version 4.2.0, NVIDIA Corporation
- Is Modded: Definitely; 'forge,fml'
- Type: Client
- Texture Pack: Default
- Profiler Position: N/A (disabled)
- Vec3 Pool Size: ~ERROR~ NullPointerException: null
java.lang.IllegalArgumentException: Illegal object for naming null
at cpw.mods.fml.common.registry.LanguageRegistry.addNameForObject(LanguageRegistry.java:93)
at ModLoader.addName(ModLoader.java:183)
at ModLoader.addName(ModLoader.java:171)
at immibis.ccperiphs.mod_ImmibisPeripherals.load(mod_ImmibisPeripherals.java:84)
at immibis.ccperiphs.mod_ImmibisPeripherals._init(mod_ImmibisPeripherals.java:30)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:440)
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
at com.google.common.eventbus.EventBus.post(EventBus.java:268)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
at cpw.mods.fml.common.Loader.initializeMods(Loader.java:651)
at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:196)
at net.minecraft.client.Minecraft.a(Minecraft.java:465)
at net.minecraft.client.Minecraft.run(Minecraft.java:752)
at java.lang.Thread.run(Unknown Source)
— END ERROR REPORT a44565e3 ———-
immibis #94
Posted 01 November 2012 - 12:30 AM
50.1.2 fixes me derping again. Sorry about that.
Goz3rr #95
Posted 06 November 2012 - 07:22 AM
With 50.1.2 mag card reader and RFID reader look normal in my inventory, but in the world they render as a RFID writer?
immibis #96
Posted 07 November 2012 - 04:51 PM
I somehow deleted 4 lines of code from immibis core in 50.2.2, they're readded in 50.2.3. Btw the bug doesn't just make them look like RFID writers… they actually are…
rhyleymaster #97
Posted 07 November 2012 - 06:14 PM
immibis, YOU ARE A GOD.
Goz3rr #98
Posted 08 November 2012 - 10:44 PM
I somehow deleted 4 lines of code from immibis core in 50.2.2, they're readded in 50.2.3. Btw the bug doesn't just make them look like RFID writers… they actually are…

This probably also was affecting tubestuff then, since everything showed up as buffers. Thanks for fixing it
MAESchortens #99
Posted 10 November 2012 - 05:11 AM
I think I´ve detected a little kind of bug.

If I drop one RFID-Reader , everything is fine , but if I drop more at the same time the dropped stack of items look like ledders , torches , and an RFID-Reader.

Here a picture: ( Sorry , dont know , how to upload a picture, would be nice when someone tell me how to do , so that I can edit)
Here a link to the picture

http://s7.directupload.net/file/d/3069/zx6o2eer_png.htm

On the left side is a normal drop , on the right side a unnormal.

We are playing on a Multiplayer Server. We have got Forge Mod Loader 4.2.2.417 ,Minecraft Forge 6.0.1.332 , Computercraft 1.46 , Immibiss Peripherals 50.1.2
,Immibiss Core 50.2.3 . Also we have got other mods like Equivalent 3 and Buildcraft .. .
With friendly greetings from Germany , MAESchortens
Asuleath #100
Posted 11 November 2012 - 11:55 PM
Is it normal that the orange light state is inversed ?
I mean, when i use "device.setInsertCardLight(false)", the orange light sets on. And when I use "device.setInsertCardLight(true)" it sets off.
Not really important, but it's seems strange.

EDIT: In fact, it seems it's just an actualisation problem. The light change its state only after exiting and reentering the computer linked.
immibis #101
Posted 16 November 2012 - 01:24 AM
You can run Forth programs on the speakers. They run independently on each player's client. This feature probably isn't that useful, but you could use it to prevent network lag from affecting your tune if you want.

Raw API: ("speaker" is the wrapped peripheral)

speaker.execute(address) - begin running code at the given address
speaker.startup() - equivalent to speaker.execute(0)
speaker.shutdown() - stops running code and stops all playing sounds
speaker.reboot() - equivalent to speaker.shutdown() followed by speaker.startup()
speaker.setAttenuation(db) - sets the attenuation (negative volume) in dB. A good default seems to be 20.
speaker.write(address, data...) - writes data. multiple data words may be given, and they will be written to sequential addresses
speaker.getMemorySize() - returns the size of memory, in words (this cannot be changed except by editing the mod's code)
speaker.debugOn() - turns on debug mode - any output from the code will be printed to the chat of the player who placed the speaker.
speaker.debugOff() - turns off debug mode


Speaker test program, including a reusable Forth compiler:
http://dl.dropbox.co...peaker-test.lua

Note: With this compiler, the entry point is a word called MAIN, which must exist.
At the end, commented out, is a short piece of code which shows the effect of debug mode.
"Forth streaming" compiles the tune to chunks of Forth, then executes them.
"Direct streaming" uses the simple API to send notes directly to clients.
Do whatever you want with that whole file.


APIs in the reusable code block:
- speaker.compileForth(sourcecode)
   Returns compiled code (as a table of numbers)
- speaker.uploadForth(code, side, hot)
   Uploads the given compiled code to the speaker on the given side, then starts it executing.
   If "hot" is true (defaults to false), it will not shut down the speaker so notes continue to play.
- speaker.streamTuneUsingForth(tune, side)
   Implements the test program's Forth streaming mode.
- speaker.streamTuneDirectly(tune, side)
   Implements the test program's direct streaming mode.

For streamTuneUsingForth and streamTuneDirectly, the tune is a table containing a list of "commands" (nested tables) of the forms:
{"p", channel, frequency} - starts a note
{"s", channel} - stops a note
{"w", ticks} - waits some ticks

Non-standard FORTH words:
TICK ( -- ) waits a tick.
PLAY ( frequency channel -- ) starts playing a note
STOP ( channel -- ) stops playing a note
immibis #102
Posted 16 November 2012 - 01:33 AM
50.2.0:
  • Added speakers.
  • Fixed rendering of dropped item-stacks of >1 item.
  • Fixed darkened rendering of part of the RFID writer as an item.
  • Added config options for all recipes, for added flexibility when installing on servers.

Speakers seem out of place in a mod that previously only had access cards. Does anyone else feel that way?
J15t98J #103
Posted 16 November 2012 - 06:28 AM
It does seem a bit out of place. Btw, the speaker spoiler on the OP is inside the mag-card spoiler.
Asuleath #104
Posted 16 November 2012 - 06:32 AM
Don't seem out of place for me. It's Immibis's Peripherals, not Immibis's Cards.
And I don't see the problem of having new features in a mod(as long as they don't break anything), no one should complain about too much features. I mean, even if people don't use some features, there's no problem of having them included in the same mod.

But actually, where's the download link ? I don't see it on you webpage.
immibis #105
Posted 17 November 2012 - 12:28 AM
Fixed the download link and the spoiler.
MaHuJa #106
Posted 17 November 2012 - 03:59 AM
as long as they don't break anything), no one should complain about too much features

Except when some of those features break in a minecraft update, causing the rest, that you do use, to be unavailable. (See also redpower - except I was using almost all of it.)


I like the speaker though; and indeed, it's not out of place in a peripherals pack.

What was that about tapes?
Asuleath #107
Posted 17 November 2012 - 07:33 AM
I just tested the speakers. They're cool.
I'm trying to make my own Jukebox right now. :)/>/>
immibis #108
Posted 17 November 2012 - 08:36 PM
as long as they don't break anything), no one should complain about too much features

Except when some of those features break in a minecraft update, causing the rest, that you do use, to be unavailable. (See also redpower - except I was using almost all of it.)


I like the speaker though; and indeed, it's not out of place in a peripherals pack.

What was that about tapes?

A while ago I had an idea to add tape drives, that would be like the built-in disk drives, but: (+ denotes advantages, - disadvantages, * neither)
  • + Store more data
  • * Not be bootable
  • - Only be accessed sequentially - i.e. you can only read/write the tape from the start to the end, and jumping to a different location takes time.
  • - Not have a built-in filesystem, so the whole tape would work like a single file on a disk, but with the ability to seek (slowly) to different locations in the file and a fixed size.

Then I realised that one floppy disks is already big enough to fit all the data you'll ever have in ComputerCraft, so they'd be pointless.
TehSomeLuigi #109
Posted 18 November 2012 - 07:26 AM
Crash when using the speaker
2012-11-17 18:24:55 [INFO] [STDERR] java.lang.RuntimeException: javax.sound.sampled.LineUnavailableException: Audio Device Unavailable
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.ccperiphs.speaker.ClientSpeaker.startChannel(ClientSpeaker.java:245)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.ccperiphs.speaker.ClientSpeaker.stream(ClientSpeaker.java:364)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.ccperiphs.speaker.ClientSpeaker.stream(ClientSpeaker.java:119)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.ccperiphs.speaker.PacketSpeakerStream.onReceived(PacketSpeakerStream.java:53)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.core.net.OneTwoFiveNetworking.onReceivePacket(OneTwoFiveNetworking.java:105)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.core.net.OneTwoFiveNetworking.access$0(OneTwoFiveNetworking.java:95)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.core.net.OneTwoFiveNetworking$1.onPacketData(OneTwoFiveNetworking.java:123)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.core.porting.ClientProxy142$3.onPacketData(ClientProxy142.java:146)
2012-11-17 18:24:55 [INFO] [STDERR]     at cpw.mods.fml.common.network.NetworkRegistry.handlePacket(NetworkRegistry.java:249)
2012-11-17 18:24:55 [INFO] [STDERR]     at cpw.mods.fml.common.network.NetworkRegistry.handleCustomPacket(NetworkRegistry.java:239)
2012-11-17 18:24:55 [INFO] [STDERR]     at cpw.mods.fml.common.network.FMLNetworkHandler.handlePacket250Packet(FMLNetworkHandler.java:78)
2012-11-17 18:24:55 [INFO] [STDERR]     at awr.a(NetClientHandler.java:1341)
2012-11-17 18:24:55 [INFO] [STDERR]     at da.a(SourceFile:59)
2012-11-17 18:24:55 [INFO] [STDERR]     at bw.b(MemoryConnection.java:78)
2012-11-17 18:24:55 [INFO] [STDERR]     at awr.d(NetClientHandler.java:104)
2012-11-17 18:24:55 [INFO] [STDERR]     at awz.b(WorldClient.java:72)
2012-11-17 18:24:55 [INFO] [STDERR]     at net.minecraft.client.Minecraft.l(Minecraft.java:1826)
2012-11-17 18:24:55 [INFO] [STDERR]     at net.minecraft.client.Minecraft.J(Minecraft.java:854)
2012-11-17 18:24:55 [INFO] [STDERR]     at net.minecraft.client.Minecraft.run(Minecraft.java:779)
2012-11-17 18:24:55 [INFO] [STDERR]     at java.lang.Thread.run(Thread.java:662)
2012-11-17 18:24:55 [INFO] [STDERR] Caused by: javax.sound.sampled.LineUnavailableException: Audio Device Unavailable
2012-11-17 18:24:55 [INFO] [STDERR]     at com.sun.media.sound.HeadspaceMixer.nResume(Native Method)
2012-11-17 18:24:55 [INFO] [STDERR]     at com.sun.media.sound.HeadspaceMixer.implOpen(HeadspaceMixer.java:346)
2012-11-17 18:24:55 [INFO] [STDERR]     at com.sun.media.sound.AbstractMixer.open(AbstractMixer.java:286)
2012-11-17 18:24:55 [INFO] [STDERR]     at com.sun.media.sound.AbstractMixer.open(AbstractMixer.java:323)
2012-11-17 18:24:55 [INFO] [STDERR]     at com.sun.media.sound.MixerClip.open(MixerClip.java:162)
2012-11-17 18:24:55 [INFO] [STDERR]     at immibis.ccperiphs.speaker.ClientSpeaker.startChannel(ClientSpeaker.java:233)
2012-11-17 18:24:55 [INFO] [STDERR]     ... 19 more
2012-11-17 18:25:05 [INFO] [STDOUT] Stopping!
2012-11-17 18:25:06 [INFO] [STDOUT] SoundSystem shutting down...
2012-11-17 18:25:06 [INFO] [STDOUT]	 Author: Paul Lamb, www.paulscode.com
2012-11-17 18:25:06 [INFO] [STDERR] Exception in thread "Minecraft main thread" org.lwjgl.LWJGLException: X Error - disp: 0x6da79460 serial: 52454 error: BadWindow (invalid Window parameter) request_code: 2 minor_code: 0
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.opengl.LinuxDisplay.globalErrorHandler(LinuxDisplay.java:276)
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.opengl.LinuxKeyboard.nSetDetectableKeyRepeat(Native Method)
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.opengl.LinuxKeyboard.setDetectableKeyRepeat(LinuxKeyboard.java:152)
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.opengl.LinuxKeyboard.destroy(LinuxKeyboard.java:163)
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.opengl.LinuxDisplay.destroyKeyboard(LinuxDisplay.java:1054)
2012-11-17 18:25:06 [INFO] [STDERR]     at org.lwjgl.input.Keyboard.destroy(Keyboard.java:349)
2012-11-17 18:25:06 [INFO] [STDERR]     at net.minecraft.client.Minecraft.e(Minecraft.java:731)
2012-11-17 18:25:06 [INFO] [STDERR]     at net.minecraft.client.Minecraft.run(Minecraft.java:809)
2012-11-17 18:25:06 [INFO] [STDERR]     at java.lang.Thread.run(Thread.java:662)



(script used where top=speaker)

s=peripheral.wrap('top')
s.start(1, 2000)
sleep(1)
s.stop(1)
(^ if the script is all wrong; I'm expermineting)
Asuleath #110
Posted 18 November 2012 - 08:36 AM
Crash when using the speaker
[…]
(script used where top=speaker)

s=peripheral.wrap('top')
s.start(1, 2000)
sleep(1)
s.stop(1)
(^ if the script is all wrong; I'm expermineting)
Tried the same program, but it worked fine.
immibis #111
Posted 19 November 2012 - 12:37 AM
Crash when using the speaker
What's your operating system and Java version? The code is fine.
Khalamov #112
Posted 20 November 2012 - 02:36 PM
I can't for the life of me get this thing to run. I'm using it with Minecraft 1.2.5 (because I'm using Technic and too lazy to do it myself and blah blah blah) with version 49 and followed the instructions… but I just get a white screen.

Full log at http://pastebin.com/rP9nBk7J, but it's rather long. Some points of interest include that it crashes as soon as the peripherals mod is being initialized, and if I take it out but leave the core mod, it starts up fine. I don't think it has anything to do with Railcraft anymore, but just in case I added a "z_" to the start of both mods (i.e. core and peripherals). Any help?

There's no crash in that log. If that's FML's log, can you post your launcher log as well? (in .techniclauncherlogslauncher_0.log)

wjykk, I had the exact same problem running Technic and trying to get this mod to work.

You need to update immibis-core_49.1.1 to immibis-core_49.2.2 in your mods folder and everything will run fine.
Shnupbups #113
Posted 20 November 2012 - 03:22 PM
I know this says 1.4x, but does it work with CC 1.47 for 1.4.4?
Tiin57 #114
Posted 20 November 2012 - 04:15 PM
I know this says 1.4x, but does it work with CC 1.47 for 1.4.4?
Unless you see a specific download for 1.4.4, probably not. Any 1.4.4 download will work with 1.4.5; however, the obfuscation changed from 1.4.2 to 1.4.4. Sorry.
immibis #115
Posted 22 November 2012 - 12:55 AM
51.0.0:
  • Updated to 1.4.5.
  • Ended support for 1.2.5, 1.3.2 and 1.4.2.
PrinzJuliano #116
Posted 27 November 2012 - 08:03 AM
Great mod. I like the idea…. and the GUIs are perfectly ;)/>, :P/>
sirdabalot #117
Posted 27 November 2012 - 09:54 AM
Imah' gettin' this error:

Spoiler

2012-11-26 20:52:04 [INFO] [STDERR] Exception in thread "Minecraft main thread" java.lang.VerifyError: (class: immibis/core/porting/ClientProxy142, method: sendPacket signature: (Lda;Lqg;)V) Incompatible argument to function
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:51)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:417)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.Loader.loadMods(Loader.java:478)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:151)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.a(Minecraft.java:424)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.run(Minecraft.java:756)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Thread.run(Unknown Source)

Help, pwease? ^_^/>
immibis #118
Posted 27 November 2012 - 11:52 PM
Imah' gettin' this error:

Spoiler

2012-11-26 20:52:04 [INFO] [STDERR] Exception in thread "Minecraft main thread" java.lang.VerifyError: (class: immibis/core/porting/ClientProxy142, method: sendPacket signature: (Lda;Lqg;)V) Incompatible argument to function
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:51)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:417)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.Loader.loadMods(Loader.java:478)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:151)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.a(Minecraft.java:424)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.run(Minecraft.java:756)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Thread.run(Unknown Source)

Help, pwease? ^_^/>/>
Are you using the 1.4.5 version in 1.4.2?
Goof #119
Posted 29 November 2012 - 02:18 AM
Can someone make a tutorial, on how to install this Peripheral??? because… i tried to just put the

IMMIBIS PERIPHERALS 50.2.0
and the

IMMIBIS-core_50.2.4

into Mods folder..


but minecraft just get blacked out… (this mean, i get black screen for a LOOOOOOONG time)



thanks :D/>

_________________________________
-Mikk809h

ComputerCraft is Awesome
sirdabalot #120
Posted 29 November 2012 - 05:06 AM
Imah' gettin' this error:

Spoiler

2012-11-26 20:52:04 [INFO] [STDERR] Exception in thread "Minecraft main thread" java.lang.VerifyError: (class: immibis/core/porting/ClientProxy142, method: sendPacket signature: (Lda;Lqg;)V) Incompatible argument to function
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Class.forName(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:51)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:417)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:140)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.reflect.Method.invoke(Unknown Source)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:69)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatch(EventBus.java:317)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:300)
2012-11-26 20:52:04 [INFO] [STDERR]	 at com.google.common.eventbus.EventBus.post(EventBus.java:268)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:83)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.common.Loader.loadMods(Loader.java:478)
2012-11-26 20:52:04 [INFO] [STDERR]	 at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:151)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.a(Minecraft.java:424)
2012-11-26 20:52:04 [INFO] [STDERR]	 at net.minecraft.client.Minecraft.run(Minecraft.java:756)
2012-11-26 20:52:04 [INFO] [STDERR]	 at java.lang.Thread.run(Unknown Source)

Help, pwease? ^_^/>/>
Are you using the 1.4.5 version in 1.4.2?

No, however, I was using the 1.4.2 version in 1.4.5, sorry for wasting your time. :(/>
sirdabalot #121
Posted 29 November 2012 - 05:08 AM
Can someone make a tutorial, on how to install this Peripheral??? because… i tried to just put the

IMMIBIS PERIPHERALS 50.2.0
and the

IMMIBIS-core_50.2.4

into Mods folder..


but minecraft just get blacked out… (this mean, i get black screen for a LOOOOOOONG time)



thanks :D/>

_________________________________
-Mikk809h

ComputerCraft is Awesome

Give us a post of your error log and we can help you. :)/>
sirdabalot #122
Posted 30 November 2012 - 05:18 AM
I'm getting a bug with the speaker, every time I go up my rail sytem with a steve's carts cart, the speaker randomly turns on… and it's always at the same position.
immibis #123
Posted 30 November 2012 - 06:22 PM
I'm getting a bug with the speaker, every time I go up my rail sytem with a steve's carts cart, the speaker randomly turns on… and it's always at the same position.
What do you mean, it randomly turns on?
sirdabalot #124
Posted 01 December 2012 - 01:43 AM
I'm getting a bug with the speaker, every time I go up my rail sytem with a steve's carts cart, the speaker randomly turns on… and it's always at the same position.
What do you mean, it randomly turns on?

Yeah, it just, starts making sounds even though the computer is off…

EDIT: Hmm… seems to have stopped now…?
Goof #125
Posted 01 December 2012 - 03:01 AM
Can someone make a tutorial, on how to install this Peripheral??? because… i tried to just put the

IMMIBIS PERIPHERALS 50.2.0
and the

IMMIBIS-core_50.2.4

into Mods folder..


but minecraft just get blacked out… (this mean, i get black screen for a LOOOOOOONG time)



thanks :D/>

_________________________________
-Mikk809h

ComputerCraft is Awesome

Give us a post of your error log and we can help you. :)/>

as i tried, looking for Crash log and error logs. i dont find anything.. when i said "my screen just blacked out" then i mean.. nothing happens… everything just quit after a while…


BUT.

i figured all out… everything is working fine…. but thanks anyway :D/>

________________________
-Mikk809h

ComputerCraft is awesome
Jako81624 #126
Posted 03 December 2012 - 05:31 AM
found a bug with peripherals and mystcraft, pastebin link: http://pastebin.com/EtRExEkL

guys at the mystcraft irc were confused, thought I should ask Immibis!! Hope I've been helpful!!
PixelToast #127
Posted 03 December 2012 - 05:48 PM
i freaking love this so far

we found a bug though
this seems to only happen with misc peripherals

step 1: place down a computer and a bee analyzer (from misc) next to it
step 2: while in creative break the bee analyzer
step 3: now place a RFID reader in the same spot
and then you disconnect from the server for "internal server error"
the server log:

2012-12-02 23:01:15 [WARNING] Failed to handle packet for infinikiller64/192.168.1.103: java.lang.ClassCastException: miscperipherals.tile.TileBeeAnalyzer cannot be cast to immibis.ccperiphs.rfid.TileRFIDWriter
java.lang.ClassCastException: miscperipherals.tile.TileBeeAnalyzer cannot be cast to immibis.ccperiphs.rfid.TileRFIDWriter
at immibis.ccperiphs.BlockPeriphs.a(BlockPeriphs.java:32)
at immibis.ccperiphs.BlockPeriphs.e(BlockPeriphs.java:81)
at xv.a(World.java:3747)
at vl.a(ItemBlock.java:86)
at um.a(SourceFile:88)
at ir.a(ItemInWorldManager.java:413)
at iv.a(NetServerHandler.java:525)
at fl.a(SourceFile:58)
at cg.b(TcpConnection.java:451)
at iv.d(NetServerHandler.java:82)
at iw.b(NetworkListenThread.java:55)
at ht.b(SourceFile:30)
at net.minecraft.server.MinecraftServer.r(MinecraftServer.java:696)
at ho.r(DedicatedServer.java:252)
at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:592)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:499)
at fy.run(SourceFile:856)
im going to also post this in the misc peripherals thread because its probably a problem with their code
immibis #128
Posted 03 December 2012 - 06:53 PM
i freaking love this so far

we found a bug though
this seems to only happen with misc peripherals

step 1: place down a computer and a bee analyzer (from misc) next to it
step 2: while in creative break the bee analyzer
step 3: now place a RFID reader in the same spot
and then you disconnect from the server for "internal server error"
the server log:

2012-12-02 23:01:15 [WARNING] Failed to handle packet for infinikiller64/192.168.1.103: java.lang.ClassCastException: miscperipherals.tile.TileBeeAnalyzer cannot be cast to immibis.ccperiphs.rfid.TileRFIDWriter
java.lang.ClassCastException: miscperipherals.tile.TileBeeAnalyzer cannot be cast to immibis.ccperiphs.rfid.TileRFIDWriter
at immibis.ccperiphs.BlockPeriphs.a(BlockPeriphs.java:32)
at immibis.ccperiphs.BlockPeriphs.e(BlockPeriphs.java:81)
at xv.a(World.java:3747)
at vl.a(ItemBlock.java:86)
at um.a(SourceFile:88)
at ir.a(ItemInWorldManager.java:413)
at iv.a(NetServerHandler.java:525)
at fl.a(SourceFile:58)
at cg.b(TcpConnection.java:451)
at iv.d(NetServerHandler.java:82)
at iw.b(NetworkListenThread.java:55)
at ht.b(SourceFile:30)
at net.minecraft.server.MinecraftServer.r(MinecraftServer.java:696)
at ho.r(DedicatedServer.java:252)
at net.minecraft.server.MinecraftServer.q(MinecraftServer.java:592)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:499)
at fy.run(SourceFile:856)
im going to also post this in the misc peripherals thread because its probably a problem with their code
Sounds like a MiscPeripherals bug - it should remove its tile entity when you break it.
PixelToast #129
Posted 04 December 2012 - 03:36 AM
now whenever i place a speaker on a server the world gets corrupt and anyone that joins gets this error:
http://puu.sh/1wGZz
it works fine in SP / LAN though
Tyler Durden #130
Posted 04 December 2012 - 03:37 AM
Tried the speakers today. I see the speaker play but I cant hear anything from the speaker, just the minecraftsound.
bjornir90 #131
Posted 06 December 2012 - 10:05 AM
This is one of the best peripheral ever done ! I really love it !
immibis #132
Posted 06 December 2012 - 10:18 PM
Immibis's Peripherals 51.0.2:
  • Handled LineUnavailableExceptions better - you still won't get sound but it'll print a stack trace and a message to the console instead of crashing. This shouldn't affect most people.

To fix speakers in SMP update Immibis Core to 51.0.4.
Tyler Durden #133
Posted 07 December 2012 - 02:33 AM
Tried the new Core and Peripherals. Got this error: http://pastebin.com/zSZqmQaR
Mods:

minecraftforge-universal-1.4.5-6.4.0.397
ComputerCraft1.47
immibis-core_51.0.4_for_1.4.5
immibis-peripherals_51.0.2_for_1.4.5
Tiin57 #134
Posted 07 December 2012 - 03:28 AM
There was a classnotfound error; perhaps you need a newer version of forge?
Tyler Durden #135
Posted 07 December 2012 - 03:51 AM
There was a classnotfound error; perhaps you need a newer version of forge?
thanks, it works now.
awesome mod
TehSomeLuigi #136
Posted 08 December 2012 - 05:32 AM
Crash when using the speaker
What's your operating system and Java version? The code is fine.

OS: Ubuntu 10.04 (LTS) (Linux)
Java:
java version "1.6.0_26"
Java(TM) SE Runtime Environment (build 1.6.0_26-b03)
Java HotSpot(TM) Server VM (build 20.1-b02, mixed mode)
immibis #137
Posted 09 December 2012 - 11:41 PM
51.1.0:
  • Moved all blocks to the ComputerCraft creative mode tab.
  • Fixed shadowing on blocks in inventories.
  • Added LAN modems and twisted-pair cable.
PixelToast #138
Posted 12 December 2012 - 05:30 AM
whenever i click on the CC creative tab i get this error:
Spoiler

2012-12-11 11:17:48 [INFO] [ForgeModLoader] Forge Mod Loader version 4.5.2.459 for Minecraft 1.4.5 loading
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] All core mods are successfully located
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Discovering coremods
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Found a candidate coremod CodeChickenCore 0.6.11.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Loading coremod CodeChickenCore 0.6.11.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Loaded coremod CodeChickenCore 0.6.11.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Found a candidate coremod NotEnoughItems 1.4.2.10.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Loading coremod NotEnoughItems 1.4.2.10.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Loaded coremod NotEnoughItems 1.4.2.10.jar
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Found library file argo-2.25.jar present and correct in lib dir
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Found library file guava-12.0.1.jar present and correct in lib dir
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Found library file asm-all-4.0.jar present and correct in lib dir
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Running coremod plugins
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Running coremod plugin CodeChickenCorePlugin
2012-12-11 11:17:48 [INFO] [STDOUT] Adding Accesstransformer map: codechickencore_at.cfg
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Coremod plugin CodeChickenCorePlugin run successfully
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Running coremod plugin NEICorePlugin
2012-12-11 11:17:48 [INFO] [STDOUT] Adding Accesstransformer map: nei_at.cfg
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Coremod plugin NEICorePlugin run successfully
2012-12-11 11:17:48 [FINEST] [ForgeModLoader] Validating minecraft
2012-12-11 11:17:49 [FINEST] [ForgeModLoader] Minecraft validated, launching...
2012-12-11 11:17:49 [INFO] [STDOUT] Inserted super call into avs.c
2012-12-11 11:17:49 [INFO] [STDOUT] auy was overriden from NotEnoughItems 1.4.2.10.jar
2012-12-11 11:17:50 [INFO] [STDOUT] Generated BlockMobSpawner helper method.
2012-12-11 11:17:51 [INFO] [STDOUT] 27 achievements
2012-12-11 11:17:51 [INFO] [STDOUT] 208 recipes
2012-12-11 11:17:51 [INFO] [STDOUT] Setting user: infinikiller64, -1627884692880548744
2012-12-11 11:17:51 [INFO] [STDOUT] LWJGL Version: 2.4.2
2012-12-11 11:17:53 [INFO] [ForgeModLoader] Attempting early MinecraftForge initialization
2012-12-11 11:17:53 [INFO] [STDOUT] MinecraftForge v6.4.1.411 Initialized
2012-12-11 11:17:53 [INFO] [ForgeModLoader] MinecraftForge v6.4.1.411 Initialized
2012-12-11 11:17:53 [INFO] [STDOUT] Replaced 84 ore recipies
2012-12-11 11:17:53 [INFO] [ForgeModLoader] Completed early MinecraftForge initialization
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer, codechicken.core.asm.CodeChickenCoreModContainer, codechicken.nei.asm.NEIModContainer]
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\minecraft.jar, examining for mod candidates
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\lwjgl.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\lwjgl_util.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\jinput.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\coremods\CodeChickenCore 0.6.11.jar, examining for mod candidates
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\coremods\NotEnoughItems 1.4.2.10.jar, examining for mod candidates
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\lib\argo-2.25.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\lib\guava-12.0.1.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Skipping known library file C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\lib\asm-all-4.0.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully
2012-12-11 11:17:53 [INFO] [ForgeModLoader] Searching C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods for mods
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file [1.4.5]ReiMinimap_v3.2_05.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file biolock_v1.0.6b_1.4.5.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file buildcraft-A-3.2.2.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file CameraCraft2.2.1.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file cccable-1.2.1-universal.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate mod directory ComputerCraft
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file ComputerCraft1.47.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file EnderStorage 1.2.1.6.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file Factorization-0.7.4.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file forestry-A-1.6.2.3.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file IC2NuclearControl-1.4.3.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file immibis-core_51.0.5_for_1.4.5.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file immibis-peripherals_51.1.0_for_1.4.5.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file industrialcraft-2_1.109.113-lf.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file ironchest-universal-4.3.0.145.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file LBM.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file LBM2.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file miscperipherals-2.0b.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file mod_AdvancedSolarPanels_3_3_0.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file mod_zGraviSuite_1_5.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file NEIPlugins-1.0.3.6.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file parachute-1.4.5-forge-396.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate mod directory portalgun
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file portalgun1.4.4v0.1_universal.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file Railcraft_1.4.5b-6.10.0.0.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate mod directory rei_minimap
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file StevesCarts2.0.0.a33.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file TF2_Teleporter_1.4.5c.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file Thaumcraft3.0.0g.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Found a candidate zip or jar file ThermalExpansion-2.1.1.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods
2012-12-11 11:17:53 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file CodeChickenCore 0.6.11.jar for potential mods
2012-12-11 11:17:53 [FINE] [ForgeModLoader] The mod container CodeChickenCore 0.6.11.jar appears to be missing an mcmod.info file
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file NotEnoughItems 1.4.2.10.jar for potential mods
2012-12-11 11:17:53 [FINE] [ForgeModLoader] The mod container NotEnoughItems 1.4.2.10.jar appears to be missing an mcmod.info file
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file [1.4.5]ReiMinimap_v3.2_05.zip for potential mods
2012-12-11 11:17:53 [FINE] [ForgeModLoader] The mod container [1.4.5]ReiMinimap_v3.2_05.zip appears to be missing an mcmod.info file
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified a BaseMod type mod mod_ReiMinimap
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file biolock_v1.0.6b_1.4.5.zip for potential mods
2012-12-11 11:17:53 [FINER] [ForgeModLoader] Located mcmod.info file in file biolock_v1.0.6b_1.4.5.zip
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod gopheratl.biolock.common.BioLock
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Examining file buildcraft-A-3.2.2.jar for potential mods
2012-12-11 11:17:53 [FINER] [ForgeModLoader] Located mcmod.info file in file buildcraft-A-3.2.2.jar
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftBuilders
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [BuildCraft|Core@3.2.2] [BuildCraft|Core@3.2.2] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftCore
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.3.0.0,)] [Forge@[6.3.0.0,)] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftEnergy
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [BuildCraft|Core@3.2.2] [BuildCraft|Core@3.2.2] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftFactory
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [BuildCraft|Core@3.2.2] [BuildCraft|Core@3.2.2] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftSilicon
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [BuildCraft|Transport@3.2.2] [BuildCraft|Transport@3.2.2] []
2012-12-11 11:17:53 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftTransport
2012-12-11 11:17:53 [FINEST] [ForgeModLoader] Parsed dependency info : [BuildCraft|Core@3.2.2] [BuildCraft|Core@3.2.2] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file CameraCraft2.2.1.zip for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] The mod container CameraCraft2.2.1.zip appears to be missing an mcmod.info file
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod de.take_weiland.CameraCraft.Common.CameraCraft
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file cccable-1.2.1-universal.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file cccable-1.2.1-universal.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod xfel.mods.cccable.common.PeripheralCableMod
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ComputerCraft] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining directory ComputerCraft for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] No mcmod.info file found in directory ComputerCraft
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.apis
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.apis.turtle
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.help
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.color
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.computer
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.http
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.moi
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.secret
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.programs.turtle
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package lua.rom.webkit
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file ComputerCraft1.47.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file ComputerCraft1.47.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.CCTurtle
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ComputerCraft] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod dan200.ComputerCraft
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file EnderStorage 1.2.1.6.jar for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] The mod container EnderStorage 1.2.1.6.jar appears to be missing an mcmod.info file
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod codechicken.enderstorage.EnderStorage
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file Factorization-0.7.4.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file Factorization-0.7.4.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod factorization.common.Core
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file forestry-A-1.6.2.3.jar for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file forestry-A-1.6.2.3.jar
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod forestry.Forestry
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [ExtrabiomesXL] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file IC2NuclearControl-1.4.3.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file IC2NuclearControl-1.4.3.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod shedar.mods.ic2.nuclearcontrol.IC2NuclearControl
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [IC2] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file immibis-core_51.0.5_for_1.4.5.jar for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file immibis-core_51.0.5_for_1.4.5.jar
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod immibis.core.ImmibisCore
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file immibis-peripherals_51.1.0_for_1.4.5.jar for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file immibis-peripherals_51.1.0_for_1.4.5.jar
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod immibis.ccperiphs.ImmibisPeripherals
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [ImmibisCore] [ImmibisCore] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file industrialcraft-2_1.109.113-lf.jar for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file industrialcraft-2_1.109.113-lf.jar
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod ic2.common.IC2
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file ironchest-universal-4.3.0.145.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file ironchest-universal-4.3.0.145.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod cpw.mods.ironchest.IronChest
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.0,)] [Forge@[6.0,)] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Attempting to load the file version.properties from ironchest-universal-4.3.0.145.zip to locate a version number for IronChest
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Found version 4.3.0.145 for mod IronChest in version.properties, using
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file LBM.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file LBM.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod eurysmods.core.EurysMods
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file LBM2.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file LBM2.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod littleblocks.core.LittleBlocks
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file miscperipherals-2.0b.zip for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] The mod container miscperipherals-2.0b.zip appears to be missing an mcmod.info file
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod miscperipherals.core.MiscPeripherals
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [CCTurtle, ComputerCraft] [ComputerCraft, CCTurtle] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file mod_AdvancedSolarPanels_3_3_0.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file mod_AdvancedSolarPanels_3_3_0.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod advsolar.AdvancedSolarPanel
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Using mcmod dependency info : [IC2, Forge, FML] [IC2] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file mod_zGraviSuite_1_5.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file mod_zGraviSuite_1_5.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod gravisuite.GraviSuite
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Using mcmod dependency info : [FML, IC2, Forge] [IC2, AdvancedSolarPanel] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file NEIPlugins-1.0.3.6.jar for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] The mod container NEIPlugins-1.0.3.6.jar appears to be missing an mcmod.info file
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod mistaqur.nei.NEIPlugins
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [mod_NotEnoughItems] [mod_NotEnoughItems] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file parachute-1.4.5-forge-396.jar for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file parachute-1.4.5-forge-396.jar
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod parachute.common.Parachute
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining directory portalgun for potential mods
2012-12-11 11:17:54 [FINE] [ForgeModLoader] No mcmod.info file found in directory portalgun
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.sound
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.sound.portalgun
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.sound.portalgun.heploop
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.sound.portalgun.radioloop
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.sound.portalgun.turret
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.streaming
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Recursing into package resources.streaming.portalgun
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file portalgun1.4.4v0.1_universal.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file portalgun1.4.4v0.1_universal.zip
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Identified an FMLMod type mod portalgun.common.PortalGun
2012-12-11 11:17:54 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.0.1.339,)] [Forge@[6.0.1.339,)] []
2012-12-11 11:17:54 [FINE] [ForgeModLoader] Examining file Railcraft_1.4.5b-6.10.0.0.zip for potential mods
2012-12-11 11:17:54 [FINER] [ForgeModLoader] Located mcmod.info file in file Railcraft_1.4.5b-6.10.0.0.zip
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod railcraft.common.core.Railcraft
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.4.1.406,)] [Forge@[6.4.1.406,), BuildCraft|Core, BuildCraft|Energy, BuildCraft|Builders, BuildCraft|Factory, Forestry, IC2] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Examining directory rei_minimap for potential mods
2012-12-11 11:17:55 [FINE] [ForgeModLoader] No mcmod.info file found in directory rei_minimap
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Examining file StevesCarts2.0.0.a33.zip for potential mods
2012-12-11 11:17:55 [FINE] [ForgeModLoader] The mod container StevesCarts2.0.0.a33.zip appears to be missing an mcmod.info file
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod vswe.stevescarts.StevesCarts
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Examining file TF2_Teleporter_1.4.5c.zip for potential mods
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Located mcmod.info file in file TF2_Teleporter_1.4.5c.zip
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod TF2.Teleporter.common.TF2TeleporterMod
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [] [] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Examining file Thaumcraft3.0.0g.zip for potential mods
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Located mcmod.info file in file Thaumcraft3.0.0g.zip
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thaumcraft.common.Thaumcraft
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.4.1.407,)] [Forge@[6.4.1.407,), BuildCraft|Core, BuildCraft|Energy, Forestry, IC2] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Examining file ThermalExpansion-2.1.1.zip for potential mods
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Located mcmod.info file in file ThermalExpansion-2.1.1.zip
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansion
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [Forge@[6.4.1.407,)] [Forge@[6.4.1.407,), BuildCraft|Core, CCTurtle] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansionEnergy
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [ThermalExpansion|Factory] [ThermalExpansion|Factory] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansionFactory
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [ThermalExpansion] [ThermalExpansion] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansionNEI
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [ThermalExpansion] [ThermalExpansion] []
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Identified an FMLMod type mod thermalexpansion.ThermalExpansionTransport
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Parsed dependency info : [ThermalExpansion|Factory] [ThermalExpansion|Factory] []
2012-12-11 11:17:55 [INFO] [ForgeModLoader] Forge Mod Loader has identified 42 mods to load
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Received a system property request ''
2012-12-11 11:17:55 [FINE] [ForgeModLoader] System property request managing the state of 0 mods
2012-12-11 11:17:55 [FINE] [ForgeModLoader] After merging, found state information for 0 mods
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod mcp
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod FML
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod Forge
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod mod_CodeChickenCore
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod mod_NotEnoughItems
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod mod_ReiMinimap
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod mod_ReiMinimap
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BioLock
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BioLock
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Builders
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Builders
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Core
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Core
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Energy
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Energy
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Factory
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Factory
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Silicon
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Silicon
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod BuildCraft|Transport
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod BuildCraft|Transport
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod CameraCraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod CameraCraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod CCCable
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod CCCable
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod CCTurtle
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod CCTurtle
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ComputerCraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ComputerCraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod EnderStorage
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod EnderStorage
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod factorization
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod factorization
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod Forestry
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod Forestry
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod IC2NuclearControl
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod IC2NuclearControl
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ImmibisCore
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ImmibisCore
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ImmibisPeripherals
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ImmibisPeripherals
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod IC2
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod IC2
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod IronChest
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod IronChest
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod EurysCore
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod EurysCore
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod LittleBlocksMod
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod LittleBlocksMod
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod MiscPeripherals
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod MiscPeripherals
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod AdvancedSolarPanel
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod AdvancedSolarPanel
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod GraviSuite
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod GraviSuite
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod NEIPlugins
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod NEIPlugins
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ParachuteMod
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ParachuteMod
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod PortalGun
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod PortalGun
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod Railcraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod Railcraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod StevesCarts
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod StevesCarts
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod pitman-87_TF2_Teleporter
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod pitman-87_TF2_Teleporter
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod Thaumcraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod Thaumcraft
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ThermalExpansion
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ThermalExpansion
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ThermalExpansion|Energy
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ThermalExpansion|Energy
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ThermalExpansion|Factory
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ThermalExpansion|Factory
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ThermalExpansion|NEI
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ThermalExpansion|NEI
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Enabling mod ThermalExpansion|Transport
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Activating mod ThermalExpansion|Transport
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Verifying mod requirements are satisfied
2012-12-11 11:17:55 [FINE] [ForgeModLoader] All mod requirements are satisfied
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Sorting mods into an ordered list
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Mod sorting completed successfully
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Mod sorting data:
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  mod_ReiMinimap(mod_ReiMinimap:Not available): [1.4.5]ReiMinimap_v3.2_05.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BioLock(BioLock:1.0.6b): biolock_v1.0.6b_1.4.5.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Core(BuildCraft:3.2.2): buildcraft-A-3.2.2.jar (required-after:Forge@[6.3.0.0,))
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Builders(BC Builders:3.2.2): buildcraft-A-3.2.2.jar (required-after:BuildCraft|Core@3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Energy(BC Energy:3.2.2): buildcraft-A-3.2.2.jar (required-after:BuildCraft|Core@3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Factory(BC Factory:3.2.2): buildcraft-A-3.2.2.jar (required-after:BuildCraft|Core@3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Transport(BC Transport:3.2.2): buildcraft-A-3.2.2.jar (required-after:BuildCraft|Core@3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  BuildCraft|Silicon(BC Silicon:3.2.2): buildcraft-A-3.2.2.jar (required-after:BuildCraft|Transport@3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  CameraCraft(CameraCraft:2.2.1): CameraCraft2.2.1.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ComputerCraft(ComputerCraft:1.47): ComputerCraft1.47.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  CCCable(ComputerCraft Peripheral Cables:1.2.1): cccable-1.2.1-universal.zip (after:ComputerCraft)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  CCTurtle(ComputerCraft Turtles:1.47): ComputerCraft1.47.zip (after:ComputerCraft)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  EnderStorage(EnderStorage:1.3): EnderStorage 1.2.1.6.jar ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  factorization(Factorization:0.7.4): Factorization-0.7.4.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  Forestry(Forestry for Minecraft:1.6.2.3): forestry-A-1.6.2.3.jar (after:ExtrabiomesXL)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  IC2(IndustrialCraft 2:1.109.113-lf): industrialcraft-2_1.109.113-lf.jar ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  IC2NuclearControl(Nuclear Control:1.4.3): IC2NuclearControl-1.4.3.zip (after:IC2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ImmibisCore(Immibis Core:51.0.5): immibis-core_51.0.5_for_1.4.5.jar ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ImmibisPeripherals(Immibis's Peripherals:51.1.0): immibis-peripherals_51.1.0_for_1.4.5.jar (required-after:ImmibisCore)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  IronChest(Iron Chest:4.3.0.145): ironchest-universal-4.3.0.145.zip (required-after:Forge@[6.0,))
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  EurysCore(Eurys Mod Core:1.3.2.0): LBM.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  LittleBlocksMod(Little Blocks:2.0.0.4): LBM2.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  MiscPeripherals(MiscPeripherals:1.5): miscperipherals-2.0b.zip (required-after:ComputerCraft;required-after:CCTurtle)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  AdvancedSolarPanel(Advanced Solar Panels:3.3.0): mod_AdvancedSolarPanels_3_3_0.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  GraviSuite(Gravitation Suite:1.5): mod_zGraviSuite_1_5.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  NEIPlugins(NEI Plugins:1.0.3.6): NEIPlugins-1.0.3.6.jar (required-after:mod_NotEnoughItems)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ParachuteMod(Parachute Mod:1.4.5): parachute-1.4.5-forge-396.jar ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  PortalGun(Portal Gun:1.4.4.0.1): portalgun1.4.4v0.1_universal.zip (required-after:Forge@[6.0.1.339,))
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  Railcraft(Railcraft:6.10.0.0): Railcraft_1.4.5b-6.10.0.0.zip (required-after:Forge@[6.4.1.406,);after:BuildCraft|Core;after:BuildCraft|Energy;after:BuildCraft|Builders;after:BuildCraft|Factory;after:Forestry;after:IC2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  StevesCarts(Steve's Carts:2.0.0.a33): StevesCarts2.0.0.a33.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  pitman-87_TF2_Teleporter(TF2 Teleporter:1.4.5): TF2_Teleporter_1.4.5c.zip ()
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  Thaumcraft(Thaumcraft:3.0.0g): Thaumcraft3.0.0g.zip (required-after:Forge@[6.4.1.407,);after:BuildCraft|Core;after:BuildCraft|Energy;after:Forestry;after:IC2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ThermalExpansion(Thermal Expansion:2.1.1.0): ThermalExpansion-2.1.1.zip (required-after:Forge@[6.4.1.407,);after:BuildCraft|Core;after:CCTurtle)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ThermalExpansion|Factory(Factory:2.1.1.0): ThermalExpansion-2.1.1.zip (required-after:ThermalExpansion)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ThermalExpansion|Energy(Energy:2.1.1.0): ThermalExpansion-2.1.1.zip (required-after:ThermalExpansion|Factory)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ThermalExpansion|NEI(NEI:2.1.1.0): ThermalExpansion-2.1.1.zip (required-after:ThermalExpansion)
2012-12-11 11:17:55 [FINE] [ForgeModLoader]  ThermalExpansion|Transport(Transport:2.1.1.0): ThermalExpansion-2.1.1.zip (required-after:ThermalExpansion|Factory)
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mcp
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mcp
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod FML
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod FML
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forge
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forge
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_CodeChickenCore
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_CodeChickenCore
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_NotEnoughItems
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_NotEnoughItems
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod mod_ReiMinimap
2012-12-11 11:17:55 [FINE] [ForgeModLoader] No MLProp configuration for mod_ReiMinimap found or required. No file written
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Injecting dummy network mod handler for BaseMod mod_ReiMinimap
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into mod_ReiMinimap
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod mod_ReiMinimap
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BioLock
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Testing mod BioLock to verify it accepts its own version in a remote connection
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] The mod BioLock accepts its own version (1.0.6b)
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BioLock
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BioLock
2012-12-11 11:17:55 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Core
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Core to verify it accepts its own version in a remote connection
2012-12-11 11:17:55 [FINEST] [ForgeModLoader] The mod BuildCraft|Core accepts its own version (3.2.2)
2012-12-11 11:17:55 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Core
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Core
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Builders
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Builders to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod BuildCraft|Builders accepts its own version (3.2.2)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Builders
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Builders
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Energy
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Energy to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod BuildCraft|Energy accepts its own version (3.2.2)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Energy
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Energy
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Factory
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Factory to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod BuildCraft|Factory accepts its own version (3.2.2)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Factory
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Factory
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Transport
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Transport to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod BuildCraft|Transport accepts its own version (3.2.2)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Transport
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Transport
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod BuildCraft|Silicon
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Silicon to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod BuildCraft|Silicon accepts its own version (3.2.2)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Silicon
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod BuildCraft|Silicon
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CameraCraft
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod CameraCraft to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod CameraCraft accepts its own version (2.2.1)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CameraCraft
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CameraCraft
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ComputerCraft
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod ComputerCraft to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod ComputerCraft accepts its own version (1.47)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ComputerCraft
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ComputerCraft
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CCCable
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod CCCable to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod CCCable accepts its own version (1.2.1)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CCCable
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CCCable
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod CCTurtle
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod CCTurtle to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod CCTurtle accepts its own version (1.47)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into CCTurtle
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod CCTurtle
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod EnderStorage
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into EnderStorage
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod EnderStorage
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod factorization
2012-12-11 11:17:56 [INFO] [FZ] This is Factorization 0.7.4
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod factorization to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod factorization accepts its own version (0.7.4)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into factorization
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod factorization
2012-12-11 11:17:56 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Forestry
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] Testing mod Forestry to verify it accepts its own version in a remote connection
2012-12-11 11:17:56 [FINEST] [ForgeModLoader] The mod Forestry accepts its own version (1.6.2.3)
2012-12-11 11:17:56 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Forestry
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Forestry
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IC2
2012-12-11 11:17:57 [FINEST] [ForgeModLoader] Testing mod IC2 to verify it accepts its own version in a remote connection
2012-12-11 11:17:57 [FINEST] [ForgeModLoader] The mod IC2 accepts its own version (1.109.113-lf)
2012-12-11 11:17:57 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IC2
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IC2NuclearControl
2012-12-11 11:17:57 [FINEST] [ForgeModLoader] Testing mod IC2NuclearControl to verify it accepts its own version in a remote connection
2012-12-11 11:17:57 [FINEST] [ForgeModLoader] The mod IC2NuclearControl accepts its own version (1.4.3)
2012-12-11 11:17:57 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IC2NuclearControl
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IC2NuclearControl
2012-12-11 11:17:57 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ImmibisCore
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod ImmibisCore to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod ImmibisCore accepts its own version (51.0.5)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ImmibisCore
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ImmibisCore
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ImmibisPeripherals
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod ImmibisPeripherals to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod ImmibisPeripherals accepts its own version (51.1.0)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ImmibisPeripherals
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ImmibisPeripherals
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod IronChest
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod IronChest to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod IronChest accepts its own version (4.3.0.145)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into IronChest
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod IronChest
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod EurysCore
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod EurysCore to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod EurysCore accepts its own version (1.3.2.0)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into EurysCore
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod EurysCore
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod LittleBlocksMod
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod LittleBlocksMod to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod LittleBlocksMod accepts its own version (2.0.0.4)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into LittleBlocksMod
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod LittleBlocksMod
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod MiscPeripherals
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod MiscPeripherals to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod MiscPeripherals accepts its own version (1.5)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into MiscPeripherals
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod MiscPeripherals
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod AdvancedSolarPanel
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod AdvancedSolarPanel to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod AdvancedSolarPanel accepts its own version (3.3.0)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into AdvancedSolarPanel
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod AdvancedSolarPanel
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod GraviSuite
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod GraviSuite to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod GraviSuite accepts its own version (1.5)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into GraviSuite
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod GraviSuite
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod NEIPlugins
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into NEIPlugins
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod NEIPlugins
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ParachuteMod
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod ParachuteMod to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod ParachuteMod accepts its own version (1.4.5)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ParachuteMod
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ParachuteMod
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod PortalGun
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod PortalGun to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod PortalGun accepts its own version (1.4.4.0.1)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into PortalGun
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod PortalGun
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Railcraft
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod Railcraft to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod Railcraft accepts its own version (6.10.0.0)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Railcraft
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Railcraft
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod StevesCarts
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod StevesCarts to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod StevesCarts accepts its own version (2.0.0.a33)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into StevesCarts
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod StevesCarts
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:17:58 [SEVERE] [ForgeModLoader] The mod pitman-87_TF2_Teleporter appears to have an invalid method annotation ServerStarting. This annotation can only apply to methods with argument types [class cpw.mods.fml.common.event.FMLServerStartingEvent] -it will not be called
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod pitman-87_TF2_Teleporter to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod pitman-87_TF2_Teleporter accepts its own version (1.4.5)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into pitman-87_TF2_Teleporter
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:17:58 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod Thaumcraft
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] Testing mod Thaumcraft to verify it accepts its own version in a remote connection
2012-12-11 11:17:58 [FINEST] [ForgeModLoader] The mod Thaumcraft accepts its own version (3.0.0g)
2012-12-11 11:17:58 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Thaumcraft
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod Thaumcraft
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ThermalExpansion
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion to verify it accepts its own version in a remote connection
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] The mod ThermalExpansion accepts its own version (2.1.1.0)
2012-12-11 11:17:59 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ThermalExpansion
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ThermalExpansion|Factory
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion|Factory to verify it accepts its own version in a remote connection
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] The mod ThermalExpansion|Factory accepts its own version (2.1.1.0)
2012-12-11 11:17:59 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion|Factory
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ThermalExpansion|Factory
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ThermalExpansion|Energy
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion|Energy to verify it accepts its own version in a remote connection
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] The mod ThermalExpansion|Energy accepts its own version (2.1.1.0)
2012-12-11 11:17:59 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion|Energy
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ThermalExpansion|Energy
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ThermalExpansion|NEI
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion|NEI to verify it accepts its own version in a remote connection
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] The mod ThermalExpansion|NEI accepts its own version (2.1.1.0)
2012-12-11 11:17:59 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion|NEI
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ThermalExpansion|NEI
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLConstructionEvent to mod ThermalExpansion|Transport
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] Testing mod ThermalExpansion|Transport to verify it accepts its own version in a remote connection
2012-12-11 11:17:59 [FINEST] [ForgeModLoader] The mod ThermalExpansion|Transport accepts its own version (2.1.1.0)
2012-12-11 11:17:59 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into ThermalExpansion|Transport
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLConstructionEvent to mod ThermalExpansion|Transport
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mcp
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mcp
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod FML
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod FML
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Forge
2012-12-11 11:17:59 [INFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Forge
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BioLock
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BioLock
2012-12-11 11:17:59 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:00 [FINER] [ForgeModLoader] BuildCraft: Using the latest version [3.2.2 (:8)] for Minecraft 1.4.5
2012-12-11 11:18:00 [INFO] [Buildcraft] Starting BuildCraft 3.2.2 (:8)
2012-12-11 11:18:00 [INFO] [Buildcraft] Copyright (c) SpaceToad, 2011
2012-12-11 11:18:00 [INFO] [Buildcraft] http://www.mod-buildcraft.com
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CameraCraft
2012-12-11 11:18:00 [INFO] [CameraCraft] Version 2.2.1 preInitializing... (c) 2012 by Take Weiland (diesieben07)
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CameraCraft
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ComputerCraft
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ComputerCraft
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CCCable
2012-12-11 11:18:00 [INFO] [STDOUT] xfel.mods.cccable.client.ClientProxy@13444ea
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CCCable
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod CCTurtle
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod CCTurtle
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod EnderStorage
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod EnderStorage
2012-12-11 11:18:00 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod factorization
2012-12-11 11:18:01 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod factorization
2012-12-11 11:18:01 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Forestry
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for BuildCraft3
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for EquivalentExchange
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Apiculture
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Arboriculture
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Core
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Cultivation
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Energy
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Factory
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Food
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Mail
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Storage
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for IndustrialCraft2
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for Apiarist's Pipe for BC3
2012-12-11 11:18:01 [FINE] [ForgeModLoader] Found plugin for TwilightForest
2012-12-11 11:18:02 [WARNING] [ForgeModLoader] Forestry: Using outdated version [1.6.2.3 (build:33)] for Minecraft 1.4.5. Consider updating.
2012-12-11 11:18:02 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Forestry
2012-12-11 11:18:02 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IC2
2012-12-11 11:18:02 [INFO] [IC2] Config loaded from C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\config\IC2.cfg
2012-12-11 11:18:03 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity MiningLaser as IC2.MiningLaser
2012-12-11 11:18:03 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Dynamite as IC2.Dynamite
2012-12-11 11:18:03 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity StickyDynamite as IC2.StickyDynamite
2012-12-11 11:18:03 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Itnt as IC2.Itnt
2012-12-11 11:18:03 [FINEST] [ForgeModLoader] Automatically registered mod IC2 entity Nuke as IC2.Nuke
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IC2
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ImmibisCore
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ImmibisCore
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod IronChest
2012-12-11 11:18:03 [FINE] [ForgeModLoader] Attempting to load the file version.properties from ironchest-universal-4.3.0.145.zip to locate a version number for IronChest
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod IronChest
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod EurysCore
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod EurysCore
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod GraviSuite
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod GraviSuite
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod NEIPlugins
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod NEIPlugins
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ParachuteMod
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ParachuteMod
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod PortalGun
2012-12-11 11:18:03 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Loading properties.
2012-12-11 11:18:03 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Properties loaded.
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod PortalGun
2012-12-11 11:18:03 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Railcraft
2012-12-11 11:18:03 [FINE] [Railcraft] Pre-Init Phase
2012-12-11 11:18:04 [FINER] [Railcraft] Pre-Init Start: ModuleCore
2012-12-11 11:18:04 [FINER] [Railcraft] Pre-Init Complete: ModuleCore
2012-12-11 11:18:04 [FINER] [Railcraft] Pre-Init Start: ModuleAutomation
2012-12-11 11:18:04 [FINER] [Railcraft] Pre-Init Complete: ModuleAutomation
2012-12-11 11:18:04 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Railcraft
2012-12-11 11:18:04 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod StevesCarts
2012-12-11 11:18:04 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod StevesCarts
2012-12-11 11:18:04 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod Thaumcraft
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod Thaumcraft
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sending event FMLPreInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:05 [FINER] [ForgeModLoader] Sent event FMLPreInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:05 [INFO] [ThermalExpansion] An updated version of Thermal Expansion is available: 2.1.2.0.
2012-12-11 11:18:05 [INFO] [ThermalExpansion] This update has been marked as CRITICAL and will ignore notification suppression.
2012-12-11 11:18:06 [INFO] [STDOUT] Starting up SoundSystem...
2012-12-11 11:18:06 [INFO] [STDOUT] Initializing LWJGL OpenAL
2012-12-11 11:18:06 [INFO] [STDOUT]	 (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2012-12-11 11:18:06 [INFO] [STDOUT] OpenAL initialized.
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound spill.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound bubble1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound bubble2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound bubble3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound bubble4.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemwood1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemwood2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemwood3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemstone1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemstone2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound golemstone3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound jar1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound jar2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound jar3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound jar4.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wispdead.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wisplive1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wisplive2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wisplive3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wand1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wand2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wand3.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound wandfail.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound rumble.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound shock1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound shock2.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound fireloop.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound zap1.ogg
2012-12-11 11:18:07 [INFO] [ForgeModLoader] [Thaumcraft] Loaded sound zap2.ogg
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mcp
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mcp
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod FML
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod FML
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Forge
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Forge
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:18:07 [INFO] [STDOUT] Removing TMI Uninstaller
2012-12-11 11:18:07 [INFO] [STDOUT] Deleting Dir: C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\TMIUninstaller
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BioLock
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BioLock
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:07 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcRobot as BuildCraft|Core.bcRobot
2012-12-11 11:18:07 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcLaser as BuildCraft|Core.bcLaser
2012-12-11 11:18:07 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcEnergyLaser as BuildCraft|Core.bcEnergyLaser
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CameraCraft
2012-12-11 11:18:07 [INFO] [CameraCraft] initializing...
2012-12-11 11:18:07 [FINE] [ForgeModLoader] Skipping automatic mod CameraCraft entity registration for already registered class de.take_weiland.CameraCraft.Common.Entities.EntityPhoto
2012-12-11 11:18:07 [FINE] [ForgeModLoader] Skipping automatic mod CameraCraft entity registration for already registered class de.take_weiland.CameraCraft.Common.Entities.EntityCamera
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CameraCraft
2012-12-11 11:18:07 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ComputerCraft
2012-12-11 11:18:07 [INFO] [STDOUT] Loading ComputerCraft v1.47 (rev 786)
2012-12-11 11:18:07 [INFO] [STDOUT] ComputerCraft: Searching for RedPowerLib...
2012-12-11 11:18:07 [INFO] [STDOUT] ComputerCraft: RedPowerLib not found.
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ComputerCraft
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CCCable
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CCCable
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod CCTurtle
2012-12-11 11:18:08 [INFO] [STDOUT] Loading CCTurtle v1.47 (rev 786)
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod CCTurtle
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod EnderStorage
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod EnderStorage
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod factorization
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod factorization
2012-12-11 11:18:08 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Forestry
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreApatite, id=4049 meta=0
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=4049 meta=1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=4049 meta=2
2012-12-11 11:18:08 [FINE] [ForgeModLoader] Skipped plugin class forestry.plugins.PluginEE because preconditions were not met.
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1388 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1389 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1390 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: logWood, id=1391 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: plankWood, id=1380 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=1386 meta=-1
2012-12-11 11:18:08 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: slabWood, id=1387 meta=-1
2012-12-11 11:18:09 [FINE] [ForgeModLoader] Skipped plugin class forestry.plugins.PluginTwilightForest because preconditions were not met.
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Forestry
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IC2
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IC2
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ImmibisCore
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ImmibisCore
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:09 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod IronChest
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod IronChest
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod EurysCore
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod EurysCore
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:10 [INFO] [ForgeModLoader] [LittleBlocks] Registering items...
2012-12-11 11:18:10 [INFO] [ForgeModLoader] [LittleBlocks] Naming items...
2012-12-11 11:18:10 [INFO] [ForgeModLoader] [LittleBlocks] Registering recipes...
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod GraviSuite
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod GraviSuite
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod NEIPlugins
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod NEIPlugins
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ParachuteMod
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod ParachuteMod entity Parachute as ParachuteMod.Parachute
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ParachuteMod
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod PortalGun
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityBlock
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entityball as PortalGun.portal_entityball
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityAPG
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityRadio
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityCube
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod PortalGun entity portal_entitybullet as PortalGun.portal_entitybullet
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityTurret
2012-12-11 11:18:10 [FINE] [ForgeModLoader] Skipping automatic mod PortalGun entity registration for already registered class portalgun.common.entity.EntityHEP
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod PortalGun
2012-12-11 11:18:10 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Railcraft
2012-12-11 11:18:10 [FINE] [Railcraft] Init Phase
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleCore
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.basic as Railcraft.cart.basic
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.chest as Railcraft.cart.chest
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.furnace as Railcraft.cart.furnace
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleCore
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleFactory
2012-12-11 11:18:10 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: blockSteel, id=457 meta=2
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity FallingCube as Railcraft.FallingCube
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleFactory
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleExtras
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tnt as Railcraft.cart.tnt
2012-12-11 11:18:10 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.work as Railcraft.cart.work
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleExtras
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleTrack
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleTrack
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleTracksHighSpeed
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleTracksHighSpeed
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleTracksWood
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleTracksWood
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleTracksReinforced
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleTracksReinforced
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Start: ModuleTrain
2012-12-11 11:18:10 [FINER] [Railcraft] Init-First Complete: ModuleTrain
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleSignals
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleSignals
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleStructures
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleStructures
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleAutomation
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.bore as Railcraft.cart.bore
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.track.relayer as Railcraft.cart.track.relayer
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.undercutter as Railcraft.cart.undercutter
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleAutomation
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleTransport
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.tank as Railcraft.cart.tank
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleTransport
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleIC2
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.energy as Railcraft.cart.energy
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleIC2
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleEnergy
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleEnergy
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleWorld
2012-12-11 11:18:11 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSulfur, id=458 meta=0
2012-12-11 11:18:11 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSaltpeter, id=458 meta=1
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleWorld
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleChunkLoading
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.anchor as Railcraft.cart.anchor
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleChunkLoading
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Start: ModuleSeasonal
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.pumpkin as Railcraft.cart.pumpkin
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod Railcraft entity cart.gift as Railcraft.cart.gift
2012-12-11 11:18:11 [INFO] [Railcraft] Activating Christmas Seasonal Pack
2012-12-11 11:18:11 [FINER] [Railcraft] Init-First Complete: ModuleSeasonal
2012-12-11 11:18:11 [FINER] [Railcraft] Init-Second Start: ModuleCore
2012-12-11 11:18:11 [FINER] [Railcraft] Init-Second Complete: ModuleCore
2012-12-11 11:18:11 [FINER] [Railcraft] Init-Second Start: ModuleFactory
2012-12-11 11:18:11 [FINER] [Railcraft] Init-Second Complete: ModuleFactory
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Railcraft
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod StevesCarts
2012-12-11 11:18:11 [FINEST] [ForgeModLoader] Automatically registered mod StevesCarts entity Minecart.Vswe.0 as StevesCarts.Minecart.Vswe.0
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod StevesCarts
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:11 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod Thaumcraft
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntitySpecialItem
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityFollowingItem
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityFlyingCarpet
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.golems.EntityGolemClay
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.golems.EntityGolemWood
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.golems.EntityGolemTallow
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.golems.EntityGolemStraw
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.golems.EntityGolemStone
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityBrainyZombie
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityGiantBrainyZombie
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityAlumentum
2012-12-11 11:18:11 [FINE] [ForgeModLoader] Skipping automatic mod Thaumcraft entity registration for already registered class thaumcraft.common.entities.EntityWisp
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod Thaumcraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:12 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreCopper, id=2001 meta=0
2012-12-11 11:18:12 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreTin, id=2001 meta=1
2012-12-11 11:18:12 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreSilver, id=2001 meta=2
2012-12-11 11:18:12 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: oreLead, id=2001 meta=3
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mcp
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mcp
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod FML
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod FML
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Forge
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Forge
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_CodeChickenCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_CodeChickenCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_NotEnoughItems
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_NotEnoughItems
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod mod_ReiMinimap
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod mod_ReiMinimap
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BioLock
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BioLock
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Core
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Core
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Builders
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Builders
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod BuildCraft|Silicon
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod BuildCraft|Silicon
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CameraCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CameraCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ComputerCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ComputerCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CCCable
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CCCable
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod CCTurtle
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod CCTurtle
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod EnderStorage
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod EnderStorage
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod factorization
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod factorization
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Forestry
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Forestry
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IC2
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IC2
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IC2NuclearControl
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IC2NuclearControl
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ImmibisCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ImmibisCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ImmibisPeripherals
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ImmibisPeripherals
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod IronChest
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod IronChest
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod EurysCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod EurysCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod LittleBlocksMod
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod LittleBlocksMod
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod MiscPeripherals
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod MiscPeripherals
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod AdvancedSolarPanel
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod AdvancedSolarPanel
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod GraviSuite
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod GraviSuite
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod NEIPlugins
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod NEIPlugins
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ParachuteMod
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ParachuteMod
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod PortalGun
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod PortalGun
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Railcraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Railcraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod StevesCarts
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod StevesCarts
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod Thaumcraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod Thaumcraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ThermalExpansion
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ThermalExpansion
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event IMCEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event IMCEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mcp
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mcp
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod FML
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod FML
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Forge
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Forge
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_CodeChickenCore
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_NotEnoughItems
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod mod_ReiMinimap
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BioLock
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BioLock
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Core
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Builders
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Energy
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:12 [FINE] [Buildcraft] NEI not detected.
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Factory
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Transport
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod BuildCraft|Silicon
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CameraCraft
2012-12-11 11:18:12 [INFO] [CameraCraft] PostIntializing...
2012-12-11 11:18:12 [FINE] [CameraCraft] Attempting to Connect to IC2 API...
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CameraCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ComputerCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ComputerCraft
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CCCable
2012-12-11 11:18:12 [INFO] [CCCable] Existing peripheral api file found, has version 1.2.1
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CCCable
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod CCTurtle
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod CCTurtle
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod EnderStorage
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod EnderStorage
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod factorization
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod factorization
2012-12-11 11:18:12 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Forestry
2012-12-11 11:18:13 [FINE] [ForgeModLoader] Using buildcraft.energy.PneumaticPowerFramework as framework.
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering boiler package: Apiary (Meta: 7)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering mill package: Apiarist's Chest (Meta: 3)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering mill package: Analyzer (Meta: 4)
2012-12-11 11:18:13 [FINER] [ForgeModLoader] Beekeeping mode read from config: NORMAL
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Arboretum (Meta: 0)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Farm (Meta: 1)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Rubber Plantation (Meta: 2)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Pumpkin Farm (Meta: 3)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Peat Bog (Meta: 4)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Mushroom Farm (Meta: 5)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering planter package: Netherwart Farm (Meta: 6)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Logger (Meta: 0)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Combine (Meta: 1)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Rubber Harvester (Meta: 2)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Pumpkin Harvester (Meta: 3)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Turbary (Meta: 4)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Cacti Harvester (Meta: 5)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Mushroom Picker (Meta: 6)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Sugar Cane Harvester (Meta: 7)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering harvester package: Infernal Combine (Meta: 8)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering mill package: Forester (Meta: 0)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering mill package: Treetap (Meta: 2)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering engine package: Biogas Engine (Meta: 0)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering engine package: Peat-Fired Engine (Meta: 1)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering engine package: Electrical Engine (Meta: 2)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering boiler package: Bio Power Generator (Meta: 4)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering boiler package: Fermenter (Meta: 0)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering boiler package: Still (Meta: 1)
2012-12-11 11:18:13 [FINEST] [ForgeModLoader] Registering boiler package: Bottler (Meta: 2)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Raintank (Meta: 3)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Carpenter (Meta: 5)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Moistener (Meta: 6)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Centrifuge (Meta: 8)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Squeezer (Meta: 9)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering boiler package: Thermionic Fabricator (Meta: 11)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering mill package: Rainmaker (Meta: 1)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering mill package: Mailbox (Meta: 5)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering mill package: Trader (Meta: 6)
2012-12-11 11:18:14 [FINEST] [ForgeModLoader] Registering mill package: Philatelist (Meta: 7)
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Forestry
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IC2
2012-12-11 11:18:14 [INFO] [IC2] Loading IC2 submodule: bcIntegration32x
2012-12-11 11:18:14 [INFO] [IC2] BuildCraft integration: Railcraft integration loaded
2012-12-11 11:18:14 [INFO] [IC2] BuildCraft 3.2 integration module loaded
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4083 to grabbing blacklist. Metadata specific: 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4061 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4060 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4066 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4065 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4064 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4063 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4062 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4072 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Added Block ID 4079 to grabbing blacklist. Not metadata specific.
2012-12-11 11:18:14 [INFO] [IC2] Loaded minor compatibility modules: Portal Gun
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IC2
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IC2NuclearControl
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ImmibisCore
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ImmibisCore
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ImmibisPeripherals
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod IronChest
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod IronChest
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod EurysCore
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod EurysCore
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod LittleBlocksMod
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:14 [WARNING] [MiscPeripherals] IC2 too old for the treetap upgrade
2012-12-11 11:18:14 [INFO] [MiscPeripherals] IC2 integration initialized
2012-12-11 11:18:14 [INFO] [MiscPeripherals] Forestry integration initialized
2012-12-11 11:18:14 [INFO] [MiscPeripherals] Railcraft integration initialized
2012-12-11 11:18:14 [INFO] [MiscPeripherals] Steve's Carts integration initialized
2012-12-11 11:18:14 [INFO] [MiscPeripherals] Advanced Solar Panels integration initialized
2012-12-11 11:18:14 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$enderChest, id=241 meta=-1
2012-12-11 11:18:14 [INFO] [MiscPeripherals] EnderStorage integration initialized
2012-12-11 11:18:14 [FINER] [Railcraft] Automation Module: Ore Detected, adding to blocks Tunnel Bore can mine: MiscPeripherals$enderChest, id=130 meta=-1
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod MiscPeripherals
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod AdvancedSolarPanel
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod GraviSuite
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod GraviSuite
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod NEIPlugins
2012-12-11 11:18:14 [FINE] [NEIPlugins] Found NEIPlugins plugin Railcraft (1.6.1.5)
2012-12-11 11:18:14 [FINE] [NEIPlugins] Found NEIPlugins plugin IC2 (1.0.1.6)
2012-12-11 11:18:14 [FINE] [NEIPlugins] Found NEIPlugins plugin BuildCraft (1.3.1.1)
2012-12-11 11:18:14 [FINE] [NEIPlugins] Found NEIPlugins plugin Forestry (1.4.0.1)
2012-12-11 11:18:14 [FINE] [NEIPlugins] Found NEIPlugins plugin Forge (1.3.0.4)
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod NEIPlugins
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ParachuteMod
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ParachuteMod
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod PortalGun
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod PortalGun
2012-12-11 11:18:14 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Railcraft
2012-12-11 11:18:14 [FINE] [Railcraft] Post-Init Phase
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Start: ModuleCore
2012-12-11 11:18:14 [FINER] [Railcraft] Registered Forestry BioFuel as a valid fuel source.
2012-12-11 11:18:14 [FINER] [Railcraft] Registered Buildcraft Fuel as a valid fuel source.
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Complete: ModuleCore
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Start: ModuleFactory
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Complete: ModuleFactory
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Start: ModuleTransport
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Complete: ModuleTransport
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Start: ModuleIC2
2012-12-11 11:18:14 [FINE] [Railcraft] IC2 Module: IC2 Detected, creating Energy Cart and Energy Loader recipes.
2012-12-11 11:18:14 [FINER] [Railcraft] Post-Init Complete: ModuleIC2
2012-12-11 11:18:14 [FINER] [Railcraft] Init Start: Renderer
2012-12-11 11:18:15 [FINER] [Railcraft] Init Complete: Renderer
2012-12-11 11:18:15 [FINEST] [Railcraft] Could not register CraftGuide plugin: BlastFurnacePlugin
2012-12-11 11:18:15 [FINEST] [Railcraft] Could not register CraftGuide plugin: CokeOvenPlugin
2012-12-11 11:18:15 [FINEST] [Railcraft] Could not register CraftGuide plugin: RockCrusherPlugin
2012-12-11 11:18:15 [FINEST] [Railcraft] Could not register CraftGuide plugin: RollingMachinePlugin
2012-12-11 11:18:15 [FINEST] [Railcraft] Could not register CraftGuide plugin: RecipeFilter
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Railcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod StevesCarts
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod StevesCarts
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod Thaumcraft
2012-12-11 11:18:15 [FINE] [NEIPlugins] Latest and current version of NEIPlugins: 1.0.3.6 and 1.0.3.6
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod Thaumcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ThermalExpansion
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:15 [INFO] [ThermalExpansion] Loading Thermal Expansion NEI Integration...
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLPostInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLPostInitializationEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mcp
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mcp
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod FML
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod FML
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Forge
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Forge
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_CodeChickenCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_CodeChickenCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_NotEnoughItems
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_NotEnoughItems
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod mod_ReiMinimap
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Handling post startup activities for ModLoader mod mod_ReiMinimap
2012-12-11 11:18:15 [FINEST] [ForgeModLoader] Requesting renderers from basemod mod_ReiMinimap
2012-12-11 11:18:15 [FINEST] [ForgeModLoader] Received 51 renderers from basemod mod_ReiMinimap
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod mod_ReiMinimap
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BioLock
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BioLock
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Core
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Core
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Builders
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Builders
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Transport
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Transport
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod BuildCraft|Silicon
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod BuildCraft|Silicon
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CameraCraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CameraCraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ComputerCraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ComputerCraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CCCable
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CCCable
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod CCTurtle
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod CCTurtle
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod EnderStorage
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod EnderStorage
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod factorization
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod factorization
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Forestry
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Forestry
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IC2
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IC2
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IC2NuclearControl
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IC2NuclearControl
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ImmibisCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ImmibisCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ImmibisPeripherals
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ImmibisPeripherals
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod IronChest
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod IronChest
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod EurysCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod EurysCore
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod LittleBlocksMod
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod LittleBlocksMod
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod MiscPeripherals
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod MiscPeripherals
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod AdvancedSolarPanel
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod AdvancedSolarPanel
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod GraviSuite
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod GraviSuite
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod NEIPlugins
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod NEIPlugins
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ParachuteMod
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ParachuteMod
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod PortalGun
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod PortalGun
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Railcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Railcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod StevesCarts
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod StevesCarts
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod pitman-87_TF2_Teleporter
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod Thaumcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod Thaumcraft
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ThermalExpansion
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ThermalExpansion
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ThermalExpansion|Factory
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ThermalExpansion|Energy
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ThermalExpansion|NEI
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sending event FMLLoadCompleteEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Sent event FMLLoadCompleteEvent to mod ThermalExpansion|Transport
2012-12-11 11:18:15 [INFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 42 mods
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 0 (0) on TextureCreosoteOilFX (239)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 16 (16) on TextureSteamFX (239)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 18 (18) on FXAnimatedLava (66)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 20 (20) on TextureComputerFX (30)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 15 (15) on FXAnimatedTexture (66)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 5 (5) on TextureAnimation (62)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 177 (177) on FXAnimatedPotion (67)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 25 (25) on TextureComputerFX (31)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 22 (22) on FXAnimatedInfusedOre (66)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 28 (28) on TextureFXTeleportationBattery (0)
2012-12-11 11:18:15 [FINER] [ForgeModLoader] Registered texture override 67 (67) on FXAnimatedTexture (67)
2012-12-11 11:18:33 [INFO] [STDOUT] Connecting to 192.168.1.103, 25564
2012-12-11 11:18:33 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Loading properties.
2012-12-11 11:18:33 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Properties loaded.
2012-12-11 11:18:34 [FINE] [ForgeModLoader] The server has compatibility level 1
2012-12-11 11:18:34 [FINER] [ForgeModLoader] THROW
java.lang.NullPointerException
at codechicken.enderstorage.EnderStorageManager.load(EnderStorageManager.java:345)
at codechicken.enderstorage.EnderStorageManager.<init>(EnderStorageManager.java:338)
at codechicken.enderstorage.EnderStorageManager.reloadManager(EnderStorageManager.java:473)
at codechicken.enderstorage.EnderStorageManager$EnderStorageSaveHandler.onWorldLoad(EnderStorageManager.java:264)
at net.minecraftforge.event.ASMEventHandler_10_EnderStorageSaveHandler_onWorldLoad_Load.invoke(.dynamic)
at net.minecraftforge.event.ASMEventHandler.invoke(ASMEventHandler.java:35)
at net.minecraftforge.event.EventBus.post(EventBus.java:103)
at ayh.<init>(WorldClient.java:47)
at axz.a(NetClientHandler.java:168)
at dx.a(Packet1Login.java:112)
at cg.b(TcpConnection.java:451)
at axz.d(NetClientHandler.java:104)
at ayc.c(SourceFile:69)
at net.minecraft.client.Minecraft.l(Minecraft.java:1541)
at net.minecraft.client.Minecraft.J(Minecraft.java:858)
at net.minecraft.client.Minecraft.run(Minecraft.java:783)
at java.lang.Thread.run(Unknown Source)
2012-12-11 11:18:36 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Sending client info to server
2012-12-11 11:18:36 [INFO] [STDOUT] Loading World: remote/192.168.1.103~25564/world
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\bin\minecraft.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\coremods\CodeChickenCore 0.6.11.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\coremods\NotEnoughItems 1.4.2.10.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\[1.4.5]ReiMinimap_v3.2_05.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\biolock_v1.0.6b_1.4.5.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\buildcraft-A-3.2.2.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\CameraCraft2.2.1.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\ComputerCraft1.47.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\cccable-1.2.1-universal.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\EnderStorage 1.2.1.6.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\Factorization-0.7.4.zip, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\forestry-A-1.6.2.3.jar, examining for codechicken classes
2012-12-11 11:18:37 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\industrialcraft-2_1.109.113-lf.jar, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\IC2NuclearControl-1.4.3.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\immibis-core_51.0.5_for_1.4.5.jar, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\immibis-peripherals_51.1.0_for_1.4.5.jar, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\ironchest-universal-4.3.0.145.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\LBM.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\LBM2.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\miscperipherals-2.0b.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\mod_AdvancedSolarPanels_3_3_0.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\mod_zGraviSuite_1_5.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\NEIPlugins-1.0.3.6.jar, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\parachute-1.4.5-forge-396.jar, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\portalgun1.4.4v0.1_universal.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\Railcraft_1.4.5b-6.10.0.0.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\StevesCarts2.0.0.a33.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\TF2_Teleporter_1.4.5c.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\Thaumcraft3.0.0g.zip, examining for codechicken classes
2012-12-11 11:18:38 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Documents and Settings\killer64\Desktop\instances\RedFern3\minecraft\mods\ThermalExpansion-2.1.1.zip, examining for codechicken classes
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded codechicken.enderstorage.NEIEnderStorageConfig
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded factorization.nei.NEI_SlagRecipeConfig
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded factorization.nei.NEI_GrinderRecipeConfig
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded factorization.nei.NEI_CrystallizerRecipeConfig
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded factorization.nei.NEI_MixerRecipeConfig
2012-12-11 11:18:38 [INFO] [STDOUT] Loaded factorization.nei.NEI_FactorizationInputConfig
2012-12-11 11:18:38 [INFO] [STDOUT] IC2 NEI Submodule initialized
2012-12-11 11:18:39 [INFO] [STDOUT] Loaded ic2.neiIntegration.common.NEIIC2Config
2012-12-11 11:18:39 [INFO] [STDOUT] Loaded immibis.core.NEIImmibisCoreConfig
2012-12-11 11:18:40 [INFO] [STDOUT] Loaded mistaqur.nei.common.NEIPluginsConfig
2012-12-11 11:18:40 [INFO] [STDOUT] [Portal Gun 1.4.4v0.1] Received world props from server.
2012-12-11 11:18:45 [INFO] [STDOUT] Inserted super call into avl.c
2012-12-11 11:18:45 [INFO] [STDOUT] ComputerCraft: Searching for RedPowerWorld...
2012-12-11 11:18:45 [INFO] [STDOUT] ComputerCraft: RedPowerWorld not found.
2012-12-11 11:22:59 [INFO] [STDOUT] Loading World: remote/192.168.1.103~25564/world
2012-12-11 11:23:19 [INFO] [STDERR] t: Rendering screen
2012-12-11 11:23:19 [INFO] [STDERR]  at bac.b(EntityRenderer.java:986)
2012-12-11 11:23:19 [INFO] [STDERR]  at net.minecraft.client.Minecraft.J(Minecraft.java:888)
2012-12-11 11:23:19 [INFO] [STDERR]  at net.minecraft.client.Minecraft.run(Minecraft.java:783)
2012-12-11 11:23:19 [INFO] [STDERR]  at java.lang.Thread.run(Unknown Source)
2012-12-11 11:23:19 [INFO] [STDERR] Caused by: java.lang.NullPointerException
2012-12-11 11:23:19 [INFO] [STDERR]  at immibis.ccperiphs.RenderUtils.setTexture(RenderUtils.java:29)
2012-12-11 11:23:19 [INFO] [STDERR]  at immibis.ccperiphs.RenderUtils.renderInvBlock(RenderUtils.java:76)
2012-12-11 11:23:19 [INFO] [STDERR]  at immibis.ccperiphs.BlockRenderer.renderInvBlock(BlockRenderer.java:31)
2012-12-11 11:23:19 [INFO] [STDERR]  at immibis.core.porting.ClientProxy142$1.renderInventoryBlock(ClientProxy142.java:71)
2012-12-11 11:23:19 [INFO] [STDERR]  at cpw.mods.fml.client.registry.RenderingRegistry.renderInventoryBlock(RenderingRegistry.java:152)
2012-12-11 11:23:19 [INFO] [STDERR]  at FMLRenderAccessLibrary.renderInventoryBlock(FMLRenderAccessLibrary.java:84)
2012-12-11 11:23:19 [INFO] [STDERR]  at baq.a(RenderBlocks.java:6999)
2012-12-11 11:23:19 [INFO] [STDERR]  at bbt.a(RenderItem.java:256)
2012-12-11 11:23:19 [INFO] [STDERR]  at bbt.b(RenderItem.java:320)
2012-12-11 11:23:19 [INFO] [STDERR]  at auy.a(GuiContainer.java:363)
2012-12-11 11:23:19 [INFO] [STDERR]  at auy.a(GuiContainer.java:113)
2012-12-11 11:23:19 [INFO] [STDERR]  at avo.a(SourceFile:31)
2012-12-11 11:23:19 [INFO] [STDERR]  at avl.a(GuiContainerCreative.java:556)
2012-12-11 11:23:19 [INFO] [STDERR]  at bac.b(EntityRenderer.java:977)
2012-12-11 11:23:19 [INFO] [STDERR]  ... 3 more
2012-12-11 11:23:29 [INFO] [STDOUT] Stopping!
2012-12-11 11:23:29 [INFO] [STDOUT] SoundSystem shutting down...
2012-12-11 11:23:30 [INFO] [STDOUT]	 Author: Paul Lamb, www.paulscode.com
it seems to happen randomly
it only does this if you havent seen it in NEI first
then the screen blinks black
then it works until you restart your client
Tiin57 #139
Posted 12 December 2012 - 05:51 AM
A missing texture? It's a nullpointerexception at a setTexture method from immibis.
Leo Verto #140
Posted 12 December 2012 - 06:00 AM
Maybe immibis core isn't installed correctly.
PixelToast #141
Posted 12 December 2012 - 06:31 AM
everything is put into the mods folder and i dont have any mods modifying classes

also, this only happens when there are no immibis things on the map
immibis #142
Posted 12 December 2012 - 12:39 PM
51.1.1:
  • Fixed setTexture crash
PixelToast #143
Posted 12 December 2012 - 01:33 PM
51.1.1:
  • Fixed setTexture crash
thanks :3

it also fixed nei bugging when you search for them
immibis #144
Posted 15 December 2012 - 12:54 AM
Is anyone using cables for anything yet?
PixelToast #145
Posted 15 December 2012 - 03:30 AM
Is anyone using cables for anything yet?
yes!
i made this little program to wrap it around normal rednet:
Spoiler

function wrap(side,func)
local m=peripheral.wrap(side)
setfenv(func,setmetatable({
  rednet={
   send=function(id,msg)
	m.sendChannel(-id,msg)
   end,
   broadcast=function(msg)
	m.sendChannel(1,msg)
   end,
   receive=rednet.receive,
   open=function() end,
  },
  peripheral={
   getSides=peripheral.getSides,
   call=peripheral.call,
   getMethods=peripheral.getMethods,
   getType=peripheral.getType,
   isPresent=peripheral.isPresent,
   decode=peripheral.decode,
   wrap=peripheral.wrap,
   native=peripheral,
  },
},{__index=getfenv(func)}))
local main=coroutine.create(func)
	local tFilter,p=nil,{}
	while true do
	 if tFilter == nil or tFilter == p[1] or p[1] == "terminate" then
	  local ok,param=coroutine.resume(main,unpack(p))
   if not ok then
	error(param)
   else
	tFilter=param
   end
   if coroutine.status(main) == "dead" then
	return
   end
  end
  if coroutine.status(main) == "dead" then
   return
  end
  p={os.pullEventRaw()}
  if p[1]=="lan_message" and p[2]==side then
   p={"rednet_message",p[3],p[5],0}
  end
end
end
the peripheral thing is going to be something to fake the lan peripheral as a modem so programs dont complain .-.
worsks verrry nice for my base that is 250 m in the sky


also, why does a speaker store its owner in its tile entity?

EDIT:
pic c:
http://puu.sh/1ANXA
immibis #146
Posted 15 December 2012 - 12:39 PM
Speakers store their owner for debugging. There is a function that allows Forth code to print numbers to the owner's chat.
Meni #147
Posted 15 December 2012 - 02:19 PM
I loved it very userfull!
immibis #148
Posted 15 December 2012 - 10:26 PM
The sender ID and channel were the wrong way around in the OP.
The LAN message event is actually: "lan_message", modem side, sender ID, channel, message
not: "lan_message", modem side, channel, sender ID, message
gngz #149
Posted 19 December 2012 - 06:17 AM
I have this error related to your mod.

java.lang.ArrayIndexOutOfBoundsException: 4
at immibis.ccperiphs.BlockPeriphs.a(BlockPeriphs.java:25)
at immibis.ccperiphs.BlockPeriphs.e(BlockPeriphs.java:81)
at up.a(World.java:3546)
at si.a(ItemBlock.java:151)
at atc.a(PlayerControllerMP.java:331)
at net.minecraft.client.Minecraft.c(Minecraft.java:1318)
at net.minecraft.client.Minecraft.l(Minecraft.java:1731)
at net.minecraft.client.Minecraft.J(Minecraft.java:845)
at net.minecraft.client.Minecraft.run(Minecraft.java:775)
at java.lang.Thread.run(Unknown Source)
— END ERROR REPORT 58e4466c ———-

regards
PixelToast #150
Posted 19 December 2012 - 07:02 AM
I have this error related to your mod.

java.lang.ArrayIndexOutOfBoundsException: 4
at immibis.ccperiphs.BlockPeriphs.a(BlockPeriphs.java:25)
at immibis.ccperiphs.BlockPeriphs.e(BlockPeriphs.java:81)
at up.a(World.java:3546)
at si.a(ItemBlock.java:151)
at atc.a(PlayerControllerMP.java:331)
at net.minecraft.client.Minecraft.c(Minecraft.java:1318)
at net.minecraft.client.Minecraft.l(Minecraft.java:1731)
at net.minecraft.client.Minecraft.J(Minecraft.java:845)
at net.minecraft.client.Minecraft.run(Minecraft.java:775)
at java.lang.Thread.run(Unknown Source)
— END ERROR REPORT 58e4466c ———-

regards
when you start minecraft or when you load a world
you also cut out all the forge information >_>
immibis #151
Posted 19 December 2012 - 12:51 PM
I have this error related to your mod.

java.lang.ArrayIndexOutOfBoundsException: 4
at immibis.ccperiphs.BlockPeriphs.a(BlockPeriphs.java:25)
at immibis.ccperiphs.BlockPeriphs.e(BlockPeriphs.java:81)
at up.a(World.java:3546)
at si.a(ItemBlock.java:151)
at atc.a(PlayerControllerMP.java:331)
at net.minecraft.client.Minecraft.c(Minecraft.java:1318)
at net.minecraft.client.Minecraft.l(Minecraft.java:1731)
at net.minecraft.client.Minecraft.J(Minecraft.java:845)
at net.minecraft.client.Minecraft.run(Minecraft.java:775)
at java.lang.Thread.run(Unknown Source)
— END ERROR REPORT 58e4466c ———-

regards
BlockPeriphs.java line 25:

public class BlockPeriphs extends BlockCombined {

Have you tried updating?
Philipo98 #152
Posted 20 December 2012 - 03:16 AM
The Mod doesent go by me when i Install the perpherals (Core goes) then my Game Crashes :(/>
Ballistic Buddha #153
Posted 22 December 2012 - 07:10 AM
I'm still pretty new to CC and this peripheral pack, so please pardon my ignorance.

But, I have a question about the mag_swipe event, and possibly about events in general (I considered posting into "Ask a Pro", but I thought this might be specific to this peripheral). Is there any way to detect which Mag Card reader sent the mag_swipe event if there are multiple readers attached to the same computer?

I'm currently working on a mag card locked door/alarm system with three mag-card readers attached to a single computer (using Xfel's peripheral cables). One inside the building for exiting and to arm an alarm system, one outside the building for entering and disarming said alarm system, and a third reader right next to the computer to terminate the running program if a card is swiped with the correct code on that particular mag-reader only.

I've looked at how a lot of people handle multiple events, and a popular method seems to be setting a universal variable for event, and just using conditional statements to handle that event. Now, that would work if all of the events I'm looking for were unique, but I've noticed that the mag_swipe event seems to be the same event type no matter where it came from, so I wanted to know if there was possibly a parameter of the event that can inform me which peripheral triggered the event? Or if I could possibly wrap all three mag readers and call some method to determine if that particular card reader just read that data?

Another alternative I've considered is to have a dedicated computer for each mag-card reader and to then hook up LAN cables to a central computer, so that way I can identify which mag-card reader was used by identifying which computer sent the message. If having them all connected to a single computer gives me too many issues, I'll just end up going the networked route, but I would prefer it if I could just use a single computer.

-Thanks
PixelToast #154
Posted 22 December 2012 - 07:14 AM
a way to route events through peripheals would be nice
so you could have multiple sides and be able to use them through peripheral cables

and you would be able to detect wich side it was swiped on
jb567 #155
Posted 22 December 2012 - 01:30 PM
Hi Immibis, I was wondering if I could use your peripherals, tube stuff and dimension anchors in a mod pack called BetterThanTekkit
you can find our forum at betterthantekkit.zapto.org

thanks for the consideration

JB567
PixelToast #156
Posted 22 December 2012 - 02:20 PM
Hi Immibis, I was wondering if I could use your peripherals, tube stuff and dimension anchors in a mod pack called BetterThanTekkit
you can find our forum at betterthantekkit.zapto.org

thanks for the consideration

JB567
yup, as long as you follow dis:
SpoilerLicense
Copyright (c) 2012 Alex "immibis" Campbell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
if you dont trust me than read it in the OP
immibis #157
Posted 28 December 2012 - 03:18 PM
52.0.0:
  • Updated to Minecraft 1.4.6. Not tested properly yet.

52.0.1:
  • Fixed packaging
  • Updated CC API

52.0.2:
  • Fixed mcmod.info

52.0.3:
  • Fixed packaging again.

52.0.4:
  • Recompiled with Java 6
Khalamov #158
Posted 29 December 2012 - 05:19 AM
Great to have you back, hope you enjoyed your holiday break :)/>

Have a bug to report with 52.0.4:.

The mag-stripe card and the RFID card are both using the same graphic image of the RFID card, but are both labelled "Mag-stripe card".

They are definitely set to different IDs in my config, however:

item {
I:peripherals.magstripe=10153
I:peripherals.rfid=16230
I:tubestuff.uselessItem=7614
}
immibis #159
Posted 29 December 2012 - 10:52 AM
52.0.5:
  • Fixed card icon and label.
Ballistic Buddha #160
Posted 29 December 2012 - 12:23 PM
52.0.5:
  • Fixed card icon and label.

Is this update just for the core package, and not the peripherals mod itself?

Also, thanks for the speedy update :)/>
Skiouros #161
Posted 29 December 2012 - 12:51 PM
I get a crash when placing a modem next to a turtle. I've attached the crash report.
immibis #162
Posted 29 December 2012 - 01:42 PM
52.0.5:
  • Fixed card icon and label.

Is this update just for the core package, and not the peripherals mod itself?

Also, thanks for the speedy update :)/>/>
Oops, I forgot to accidentally change the version number (again) so it didn't upload since there was already a version with that number. Fixed.
immibis #163
Posted 29 December 2012 - 01:46 PM
I get a crash when placing a modem next to a turtle. I've attached the crash report.
Not sure what's happening there, but 52.0.6 should at least not crash.
darkrising #164
Posted 31 December 2012 - 03:21 PM
Really love these peripherals :)/>

I've noticed that the lan_message event returns nil for the modem side (CC 1.481)

I'll play with it a bit more see if its just me :D/>

Edit: wow that was a quick fix, my router is working perfectly again! :)/>
immibis #165
Posted 31 December 2012 - 05:11 PM
52.0.7:
  • Fixed modem side in lan_message events.
Ballistic Buddha #166
Posted 03 January 2013 - 09:35 PM
I seem to be having a few crashes when my RFID reader is doing scans for players. I'm not sure if Immibis' Peripherals is causing the issue, or if it is the peripheral cables, but I thought I'd ask here first.

Here is the crash report:
http://dl.dropbox.com/u/20588547/error%20reports/crash-2013-01-03_01.29.44-server.txt

And here is the RFID reader in question:

Pic of front:
http://dl.dropbox.com/u/20588547/error%20reports/2013-01-03_03.16.47.png

Pic of back:
http://dl.dropbox.com/u/20588547/error%20reports/2013-01-03_03.17.06.png

As you can see, I'm not attaching the RFID reader to the peripheral cable, just the writer.

This computer currently has no disk loaded and nothing is currently stored on it, so It's not running any programs except the standard shell.

Any idea about what might be going on here?

-Thanks
Cloudy #167
Posted 04 January 2013 - 12:14 AM
It appears that the reader is attached to the cable - it is peripheral cables which is causing the error.
D3matt #168
Posted 04 January 2013 - 11:47 AM
Speakers should really drop off with distance. They're pretty much unusuable in multiplayer because you hear speakers from accross town at full volume.

EDIT: Nevermind, it DOES seem to drop off now… Odd.
PixelToast #169
Posted 04 January 2013 - 02:22 PM
Speakers should really drop off with distance. They're pretty much unusuable in multiplayer because you hear speakers from accross town at full volume.

EDIT: Nevermind, it DOES seem to drop off now… Odd.
yea, speakers are EXTREMELY glitchy in MP .-.
todry #170
Posted 05 January 2013 - 07:10 PM
Can someone share / show me / make an RFID read / write program? Thanks
PixelToast #171
Posted 05 January 2013 - 10:13 PM
Can someone share / show me / make an RFID read / write program? Thanks
http://pastebin.com/PYECepfV
it has a bunch of unecicary stuff but it still works
press enter and type in data
the next card to be swiped will be written to
it will also display the data when a card is swiped
todry #172
Posted 05 January 2013 - 10:43 PM
Thanks PixelToast but I'm looking for RFID not mag card thanks although I think I can find a use for this.

EDIT WTF it does not work.
Exerro #173
Posted 06 January 2013 - 09:05 AM
Wow these peripherals (especially the speaker and lan stuff) should be added to the mod…i really want to make some programs with the speaker but im not sure how many people will have the peripherals :l
Shnupbups #174
Posted 07 January 2013 - 01:07 PM
Can you put the actual MAG and RFID cards into the creative menu? Please?
immibis #175
Posted 07 January 2013 - 01:14 PM
52.0.8:
  • Fixed both cards not appearing in the creative menu.
todry #176
Posted 19 January 2013 - 01:02 PM
I suck at lua but how the heck do I make an RFID door lock?
PixelToast #177
Posted 19 January 2013 - 02:24 PM
I suck at lua but how the heck do I make an RFID door lock?
capture the event, just like the mag card but a bit different
todry #178
Posted 19 January 2013 - 02:32 PM
By suck I mean all I know is how to wrap and redirect to a monitor
PixelToast #179
Posted 20 January 2013 - 12:37 AM
i dont use RFIDs currently, might make a video for it later .-.
todry #180
Posted 21 January 2013 - 01:20 PM
I found a RFID read/write program :)/>

http://www.computercraft.info/forums2/index.php?/topic/3984-rfid-door-lock-use-immibiss-peripherals/page__fromsearch__1
SilverSatin #181
Posted 31 January 2013 - 05:20 AM
quick question is it possible to read the mag cards label ?
or possibly a future feature to allow reading the label.


the reason is pretty simple label = name of the card owner data on the card = data from the owner

so i like to have the ability to read who's card is in ( read label ) and proceed with reading the data.

It's okay if this feature is not possible or wont come in any future version i'll just store card holder name in the data and break the data in pieces when reading :D/> but the amount of data that can be stored on a mag card is pretty limited thats why I'm trying to avoid using too much of it.
immibis #182
Posted 31 January 2013 - 06:42 PM
quick question is it possible to read the mag cards label ?
or possibly a future feature to allow reading the label.


the reason is pretty simple label = name of the card owner data on the card = data from the owner

so i like to have the ability to read who's card is in ( read label ) and proceed with reading the data.

It's okay if this feature is not possible or wont come in any future version i'll just store card holder name in the data and break the data in pieces when reading :D/> but the amount of data that can be stored on a mag card is pretty limited thats why I'm trying to avoid using too much of it.
It won't be added - if you want to store data, then store it in the data. The label is for players to tell the cards apart.
diegodan1893 #183
Posted 01 February 2013 - 07:00 AM
Nice peripheral! But I found a bug with Mag reader lights. They act like a bud switch, when you change the orange light, it won't change until you place a block next to it or open the computer GUI.
absorr #184
Posted 16 February 2013 - 10:32 AM
Hi, I would like to add your mod into a Tekkit addon I am making called the Hackers' Modkit. The modkit is all about adding more things for programming lovers to be able to do more with their code within Tekkit Lite. It will be an addon through the new custom zip feature in the Technic Launcher. You will, of course, be given the proper credit for your mod. I hope to hear from you soon with your reply!

EDIT: I would also like to add your Liquid XP mod as well, if that is alright with you.
PixelToast #185
Posted 16 February 2013 - 10:53 AM
Hi, I would like to add your mod into a Tekkit addon I am making called the Hackers' Modkit. The modkit is all about adding more things for programming lovers to be able to do more with their code within Tekkit Lite. It will be an addon through the new custom zip feature in the Technic Launcher. You will, of course, be given the proper credit for your mod. I hope to hear from you soon with your reply!

EDIT: I would also like to add your Liquid XP mod as well, if that is alright with you.
Copyright © 2012 Alex "immibis" Campbell

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Tiin57 #186
Posted 17 February 2013 - 03:05 PM
Hi, I would like to add your mod into a Tekkit addon I am making called the Hackers' Modkit. The modkit is all about adding more things for programming lovers to be able to do more with their code within Tekkit Lite. It will be an addon through the new custom zip feature in the Technic Launcher. You will, of course, be given the proper credit for your mod. I hope to hear from you soon with your reply!

EDIT: I would also like to add your Liquid XP mod as well, if that is alright with you.
I believe what PixelToast is saying in Legalese is "yes".
seal6000 #187
Posted 22 February 2013 - 11:19 AM
Does this work in CC 1.5?
immibis #188
Posted 22 February 2013 - 03:06 PM
Does this work in CC 1.5?
Probably. I haven't tested it.
PixelToast #189
Posted 22 February 2013 - 03:13 PM
seems to work fine
immibis #190
Posted 22 February 2013 - 07:50 PM
Cryptographic accelerator API

Where "p" is the wrapped peripheral.

– Generates a key for the given symmetric algorithm.
– The key size is optional; if it's not specified a default value will be used depending on the algorithm.
– Note that sometimes you can successfully generate a key with an invalid size for the algorithm, but you won't be
– able to encrypt with it.
key = p.generateSymmetricKey(algorithm, keysize)

– Converts a key to a string.
encodedKey = key.encode()

– Converts a string back to a key. The algorithm must be the same one the key was created with.
key = p.decodeKey(algorithm, encodedKey)

– Encrypts a string. The algorithm must be specified again as Java allows you to specify additional options here
– e.g. you could create a key with "DES" and then encrypt with "DES/CBC/NoPadding".
ciphertext = key.encrypt(algorithm, plaintext)

– Decrypts a string. The algorithm must be the same it was encrypted with.
plaintext = key.decrypt(algorithm, ciphertext)


– Returns the block size of an algorithm in bytes, or 0 for stream ciphers. You probably don't need this.
blockSize = p.getCipherBlockSize(algorithm)

– Generates a key pair for use with the given asymmetric algorithm.
– Keysize is not optional. The maximum keysize is 1024 with this peripheral as asymmetric keys can take a long time to generate.
– The returned keys work like symmetric keys, with the exception that messages encrypted by one must be decrypted by the other, instead of the same one.
publicKey, privateKey = p.generateKeyPair(algorithm, keysize)

– Generates a hash of a string using the given hashing algorithm.
hash = p.hash(algorithm, string)



Note that for long messages the ciphertext will be approximately 33% longer than the plaintext as it is base64 encoded. There is also a constant-length overhead depending on the algorithm, and the plaintext length will be rounded up to the nearest block size - for short messages the ciphertext can be several times the length of the plaintext.

Algorithm names
Any algorithm recognized by the Java Crypto API can be used - for a list of many algorithms in Bouncy Castle (which Minecraft uses), search for "5.2 Algorithms" in this page.

Recommended algorithm names, if you don't have a need for a particular algorithm:
Asymmetric encryption - generate key with "RSA", encrypt with "RSA"
Symmetric encryption - generate key with "AES", encrypt with "AES/CBC/PKCS7Padding". Valid key sizes for AES are 128, 192 or 256.
Hashing - "SHA256"



Example program
immibis #191
Posted 22 February 2013 - 07:52 PM
Adventure map interface API
(by the Department of Redundancy Department)

Events
The adventure map interface fires the following events:
"player_login", username – when a player logs in
"player_logout", username – when a player logs out
"player_respawn", username – when a player respawns
"player_change_world", username – when a player goes to another world
"chat_message", username, message – when a player types in chat

Peripheral methods
Where "p" is the wrapped peripheral.

– Returns an array of the dimension IDs of all currently loaded worlds
worlds = p.getLoadedWorlds()

– Returns an array of the dimension IDs of all currently registered worlds, loaded or not.
worlds = p.getRegisteredWorlds()

– Gets a world. Returns nil if the world is not loaded.
w = p.getWorld(dimensionID)

– Gets a world. Tries to load the world if it isn't loaded. Returns nil if the world is not loaded and couldn't be loaded.
w = p.getOrLoadWorld(dimensionID)

– Returns the position of the peripheral block.
x, y, z = p.getPeripheralPos()

– Returns the dimension ID of the world the peripheral block is in.
dimensionID = p.getPeripheralWorldID()

– Finds a player, given their username. Returns nil if they aren't logged in.
pl = p.getPlayerByName(username)

– Returns an array of the usernames of all players that are currently logged in.
players = p.getPlayerUsernames()

World methods

– Returns the name of the biome at the given coordinates. Loads the chunk if necessary.
biome = w.getBiome(x, z)

– Returns the block ID at the given coordinates. Loads the chunk if necessary.
ID = w.getBlockID(x, y, z)

– Returns the metadata at the given coordinates. Loads the chunk if necessary.
meta = w.getMetadata(x, y, z)

– Returns the block-light level at the given coordinates. Loads the chunk if necessary.
light = w.getBlockLight(x, y, z)

– Returns the sky-light level at the given coordinates. Loads the chunk if necessary.
light = w.getSkyLight(x, y, z)

– Plays a sound. The sound name is a string. Normal volume is 1. Normal pitch is 1. Maximum pitch is 4.
w.playSound(soundName, x, y, z, volume, pitch)

– Creates an explosion.
– TNT explosions have a power of 4.
– createFire and destroyBlocks are booleans.
w.explode(x, y, z, power, createFire, destroyBlocks)

– Finds a nearby player.
– maxDistance is optional - if not specified, or 0, there will be no maximum distance.
pl = w.getClosestPlayer(x, y, z, maxDistance)

– Checks if a chunk is loaded. Coordinates are chunk coordinates, not block coordinates.
isLoaded = w.isChunkLoaded(x, z)

– Sets a block.
w.setBlock(x, y, z, id, metadata)

– Sets a block without causing a block update.
w.setBlockWithoutNotify(x, y, z, id, metadata)

– Returns the world time
time = w.getTime()

– Sets the world time
w.setTime(newTime)

– Gets a tile entity.
te = w.getTileEntity(x, y, z)

Player methods

– Returns username
username = pl.getUsername()

– Returns health in half hearts.
health = pl.getHealth()

– Returns hunger level in half bars.
hunger = pl.getHunger()

– Returns hunger saturation level in half bars.
saturation = pl.getFoodSaturation()

– Sets hunger level in half bars
pl.setHunger(hunger)

– Sets hunger saturation level in half bars
pl.setFoodSaturation(saturation)

– Sends a chat message to the player. CC probably messes up colour codes.
pl.sendChat(message)

– Heals. Amount is in half hearts.
pl.heal(amount)

– Damages the player (with magic damage, which ignores armour). Amount is in half hearts
pl.damage(amount)

– Returns the player's gamemode. 0 is survival, 1 is creative, 2 is adventure. There's no setter but you can use a command block for that.
mode = pl.getGamemode()

– Returns the player as an entity object, so you can use generic entity methods.
ent = pl.asEntity()

Entity methods

– Gets the entity's position
x, y, z = ent.getPosition()

– Teleports the entity
ent.setPosition(x, y, z)

– Gets the dimension ID of the world the entity is in
dimID = ent.getWorldID()

– Gets the normalized direction vector the entity is looking in
x, y, z = ent.getLooking()


Tile entity methods

– Returns the Java class name of the tile entity.
class = te.getClass()

– Takes a snapshot of the tile entity's state in NBT format
te.readNBT()

– Updates the tile entity with the saved NBT data
te.writeNBT()

– Returns the saved NBT data so you can edit it. NBT methods are not documented here, use the Lua API - see below.
nbt = te.getNBT()

NBT
Download this API (pastebin code: QMct3H9x) and either shell.run it, include it in your program or os.loadAPI it.

Use readTileNBT to read NBT as a table from a tile. Use writeTileNBT to do the opposite.

Example, if w is a world object:

local x, y, z = 0, 128, 0

-- Create a chest
w.setBlock(x, y, z, 54, 0)

-- Get an NBT table representing the contents of the chest
local te = w.getTileEntity(x, y, z)
local nbt = readTileNBT(te)

-- Add a stack of bedrock in slot 0
table.insert(nbt.value.Items.value, {type="compound", value={id={type="short", value=7}, Count={type="byte", value=64}, Damage={type="short", value=0}, Slot={type="byte", value=0}}})

writeTileNBT(te, nbt)

NBT encoded as a table looks like this:

nbt = {
type="compound",
value={
  id={type="string", value="Chest"},
  x={type="int", value=0},
  y={type="int", value=128},
  z={type="int", value=0},
  Items={
   type="list",
   value={
	{
	 type="compound",
	 value={
	  id={type="short", value=7},
	  Count={type="byte", value=64},
	  Damage={type="short", value=0},
	  Slot={type="byte", value=0}
	 }
	},
	{
	 type="compound",
	 value={
	  id={type="short", value=1},
	  Count={type="byte", value=32},
	  Damage={type="short", value=0},
	  Slot={type="byte", value=2}
	 }
	}
   }
  },
  randomLong={type="long", value={1, 2}},
  randomIntArray={type="intArray", value={1, 2, 3, 4}},
  randomByteArray={type="byteArray", value={5, 6, 7, 8}}
}
}
corresponding to this NBT:

NBT_Compound
id: NBT_String "Chest"
x: NBT_Integer 0
y: NBT_Integer 128
z: NBT_Integer 0
Items: NBT_List
  NBT_Compound
   id: NBT_Short 7
   Count: NBT_Byte 64
   Damage: NBT_Short 0
   Slot: NBT_Byte 0
  NBT_Compound
   id: NBT_Short 1
   Count: NBT_Byte 32
   Damage: NBT_Short 0
   Slot: NBT_Byte 2
randomLong: NBT_Long 4294967298 -- this is (1 << 32) | 2
randomIntArray: NBT_IntArray [1, 2, 3, 4]
randomByteArray: NBT_ByteArray [5, 6, 7, 8]
immibis #192
Posted 22 February 2013 - 08:02 PM
52.1.0:
  • Added cryptographic accelerator.
  • Added adventure map interface. Uncraftable. Must be enabled in config or it won't do anything - enabled by default in SSP only.
  • Fixed setInsertCardLight not causing render updates.
PixelToast #193
Posted 23 February 2013 - 03:44 AM
getting the most bizzare error ever

running this program:
http://pastebin.com/xvc5Pfmn

happens after using setHunger aswell

EDIT2:

any more documentation on the playSound function?
i can seem to figure it out

EDIT:

toatal cost of crypto accelerator:
448 stone
64 redstone
24 glass (64 glass panes)
6 iron ingots
about 65 coal (for smelting)
2 inc sacks
immibis #194
Posted 23 February 2013 - 08:13 PM
52.1.1:
  • Fixed setHunger and setFoodSaturation in SMP.

getting the most bizzare error ever

running this program:
http://pastebin.com/xvc5Pfmn

happens after using setHunger aswell
Fixed.

any more documentation on the playSound function?
i can seem to figure it out
Look in .minecraft/resources/sound3. You can play a sound from there by replacing /'s with .'s, removing the .ogg extension and any number.
Eg "random.bowhit" should play either sound3/random/bowhit1.ogg, sound3/random/bowhit2.ogg, sound3/random/bowhit3.ogg or sound3/random/bowhit4.ogg.

toatal cost of crypto accelerator:
448 stone
64 redstone
24 glass (64 glass panes)
6 iron ingots
about 9 coal (for smelting)
2 inc sacks
Doesn't seem ridiculous, you forgot 56 coal to smelt the 448 stone - or use an induction furnace. Expensive enough that you're not going to want one on every computer though, but I usually get tons of redstone and coal.
Mandrake Fernflower #195
Posted 24 February 2013 - 04:30 AM
@immibis you have won the internet. +1
Mandrake Fernflower #196
Posted 01 March 2013 - 09:36 AM
Also are you planning on removing LAN as there is now a official replacement? and also here's a better recipe I thought of for the crypto: [attachment=1041:Untitled.png]
kylergs #197
Posted 01 March 2013 - 11:49 AM
Have you thought about rfid card readers returning the distance the player is from the reader, would make tracking of people in your base possible
ThePH #198
Posted 02 March 2013 - 04:41 PM
Could a way to get every dimensions, execute commands and change an entity DIM, be added ?
MudkipTheEpic #199
Posted 03 March 2013 - 06:06 PM
Also are you planning on removing LAN as there is now a official replacement? and also here's a better recipe I thought of for the crypto: [attachment=1041:Untitled.png]

No! Please don't remove LAN! I love it! (And my base would *explode* of nonexistent block IDs)
immibis #200
Posted 04 March 2013 - 11:55 AM
Also are you planning on removing LAN as there is now a official replacement?
No. Does the official LAN work through unloaded chunks?

Have you thought about rfid card readers returning the distance the player is from the reader, would make tracking of people in your base possible
That's a good idea.
Pecacheu #201
Posted 09 March 2013 - 05:06 AM
I know that it's not what the RFID writers are intended for, but could you add a command to open/close the cover without writing to the card inside?
immibis #202
Posted 09 March 2013 - 08:20 PM
Any reason?
ThePH #203
Posted 10 March 2013 - 11:24 AM
Could a way to get every dimensions, execute commands and change an entity DIM, be added ?

Up :)/>
immibis #204
Posted 10 March 2013 - 01:54 PM
52.1.2:
  • Added advmap.getRegisteredWorlds()
  • LAN modem light turns off when not connected to a computer.
  • Twisted pair cable renamed to LAN cable (for simplicity and consistency).

To execute commands you can use a command block as a peripheral (if enabled in CC config).
Changing entity dimensions wouldn't be easy to make an API for, because it actually destroys the entity and creates a copy.
ThePH #205
Posted 10 March 2013 - 03:21 PM
Thank you very much for answering ^^
amtra5 #206
Posted 13 March 2013 - 06:49 PM
If you change the adventure map component to tell what your saying in chat, you could make this!

Immibis peripherals + Command block peripheral (http://www.computercraft.info/forums2/index.php?/topic/5514-cc-146-mc-142-command-block-peripheral-003/) + CCleverbot (http://www.computercraft.info/forums2/index.php?/topic/10835-ccleverbot-11-cleverbot-in-cc/) = having someone to talk to in the server chat when your lonely. :D/>
Shnupbups #207
Posted 13 March 2013 - 07:27 PM
If you change the adventure map component to tell what your saying in chat, you could make this!

Immibis peripherals + Command block peripheral (http://www.computerc...peripheral-003/) + CCleverbot (http://www.computerc...leverbot-in-cc/) = having someone to talk to in the server chat when your lonely. :D/>
1. Cool idea!
2. You wouldn't need command block peripheral, computers can interact with command blocks without peripherals if enabled in the config.
3. That was the 5000th reply in this forum! Well done for choosing this time to comment!
PixelToast #208
Posted 14 March 2013 - 06:50 AM
done!
http://pastebin.com/Kbei1Kjr

though one problem, the way he is doing it dosent allow cleverbot to see the last couple messages (wich is in the POST variable sent to the cleverbot server)
amtra5 #209
Posted 14 March 2013 - 09:54 AM
done!
http://pastebin.com/Kbei1Kjr

though one problem, the way he is doing it dosent allow cleverbot to see the last couple messages (wich is in the POST variable sent to the cleverbot server)
You should make a post in "programs" for it, then more people would be able to see/use it.
PixelToast #210
Posted 14 March 2013 - 04:22 PM
no because 99% of the code isnt mine :P/>
ill just ask gravity to post it on that thread
immibis #211
Posted 17 March 2013 - 12:01 PM
53.0.0:
  • Updated to Minecraft 1.5.
  • Second parameter to rfid_detected event is the distance from the centre of the reader.
  • Fixed adventure map interfaces and cryptographic coprocessors forgetting their direction when saved.
  • New bug: Speakers can flash darker and lighter.
PixelToast #212
Posted 17 March 2013 - 03:36 PM
adventure map interface dosent receive chat messages (not sure if it works at all)
immibis #213
Posted 17 March 2013 - 04:14 PM
Make sure it's enabled in the config file.

52.0.1:
  • Adventure map interface won't show up in creative mode if it's disabled on the client (Note: it defaults to enabled on clients)
Shnupbups #214
Posted 17 March 2013 - 09:58 PM
Adventure map interface isn't in my creative menu at all now, even though it's enabled (I double-checked). I really wanna try out the chat-cleverbot thing…
immibis #215
Posted 17 March 2013 - 11:23 PM
53.0.2:
  • Fixed previous update.
immibis #216
Posted 19 March 2013 - 11:36 AM
53.0.3:
  • Solid sides of blocks are now actually solid, so you can put CC modems on them.
PixelToast #217
Posted 19 March 2013 - 01:02 PM
so many updates Dx
Shnupbups #218
Posted 19 March 2013 - 04:27 PM
I have created a program that allows you to make your own commands to be run in chat using the Adventure Map Interface! Try it here!
PixelToast #219
Posted 20 March 2013 - 03:45 AM
have you considered making a websockets type peripheral?
ccsockets is waaay to hard to use
amtra5 #220
Posted 22 March 2013 - 02:02 AM
My program that acts like a light helmet from gregtech(adventure map peripheral)


name = "amtra5" --change to your IGN
delay = 0.5 -- amount of delay between updates
height = 3 --height above player
p = peripheral.wrap("right")
world = p.getWorld( p.getPeripheralWorldID())
player = p.getPlayerByName(username)
plent = player.asEntity()
while true do
 x, y, z = plent.getPosition()
 world.setBlock(x, y + height, z, 89, 0)
 sleep(delay)
 world.setBlock(x, y + height, z, 0, 0)
end
Should work :P/>
PixelToast #221
Posted 22 March 2013 - 02:52 AM
makes me want to make a magic carpet thing
Qwertz #222
Posted 24 March 2013 - 07:54 PM
When I try to use the mag-card reader using the - reader.beginWrite("card data", "card label"), or reader.setInsertCardLight(true/false) api function I get this error: lua:1: attempt to index ? (a nil value) I have used peripheral.wrap("side of peripheral"). I am a bit of a noob at lua, so bear with me.
immibis #223
Posted 24 March 2013 - 11:41 PM
reader=peripheral.wrap("side of peripheral")
thatsimplekid #224
Posted 25 March 2013 - 04:13 AM
has anyone figured out how to make an RFID door, i'm not too sure. :)/>
cody_white_tiger #225
Posted 28 March 2013 - 04:09 PM
With the world functions i am having some issues with with getBlockMetadata which seems to be missing somehow. I know that it works properly for other functiosn like getBlockID. i dont have any real working code a tthis time, but it goes something like this, and yes im in dimention 3

ami = peripheral.wrap("right")
map = ami.getWorld(3)
id = map.getBlockID(10,1,25)
meta = map.getBlockMetadata(10,1,25)
immibis #226
Posted 28 March 2013 - 05:31 PM
It's getMetadata not getBlockMetadata. It also seems to be broken so that it returns the block ID instead - will be fixed in the next version.
immibis #227
Posted 29 March 2013 - 10:50 AM
54.0.0:
  • Updated to Minecraft 1.5.1.
cody_white_tiger #228
Posted 29 March 2013 - 11:10 AM
Will there be any further updates to the 1.4.6/1.4.7 version? i canot upgrade to 1.5.1 untill RP2 is out. which will probably be quite a long time…
immibis #229
Posted 29 March 2013 - 01:48 PM
No.
TheOddByte #230
Posted 01 April 2013 - 12:50 AM
immibis… This peripheral is great! :D/>
Good job!
Meni #231
Posted 01 April 2013 - 03:26 PM
You should do a recipe using the reinforced stone block to make readers that can be harder to destroy.
Pecacheu #232
Posted 02 April 2013 - 09:06 AM
I know that it's not what the RFID writers are intended for, but could you add a command to open/close the cover without writing to the card inside?
Any reason?

Well, you could use it as a storgage method for written-on RFID cards, and it would look really cool. Plus, it would give a point to the pointless giant warehouse of RFID writers I built.
SoSoRandom #233
Posted 04 April 2013 - 02:05 AM
i need some help with the LAN cables im new with computercraft.
why is this code not working
local monitor = peripheral.warp("right")
monitor.send("hi")
TehSomeLuigi #234
Posted 04 April 2013 - 02:32 AM
i need some help with the LAN cables im new with computercraft.
why is this code not working
local monitor = peripheral.warp("right")
monitor.send("hi")

Use peripheral.wrap, not warp.
PixelToast #235
Posted 04 April 2013 - 06:54 AM
i need some help with the LAN cables im new with computercraft.
why is this code not working
local monitor = peripheral.warp("right")
monitor.send("hi")
you arent using send right either .-.
TableCraft0R #236
Posted 07 April 2013 - 08:35 AM
Downloads
Download the mod from here.
Archive:
version 51.x.x for MC 1.4.5
version 50.x.x for MC 1.2.5/1.3.2/1.4.2
version 49.x.x for MC 1.2.5

Requirements: Minecraft Forge, ComputerCraft, and Immibis Core (which you can download from the same page).

I need 1.4.7 build because my mods isn't all updated to 1.5.1
Please!
MysticT #237
Posted 07 April 2013 - 08:54 AM
Downloads
Download the mod from here.
Archive:
version 51.x.x for MC 1.4.5
version 50.x.x for MC 1.2.5/1.3.2/1.4.2
version 49.x.x for MC 1.2.5

Requirements: Minecraft Forge, ComputerCraft, and Immibis Core (which you can download from the same page).

I need 1.4.7 build because my mods isn't all updated to 1.5.1
Please!
Then go to the download page and get the 1.4.6 version, which works for 1.4.7. No need for a big text like that, it just makes you look bad.
TableCraft0R #238
Posted 08 April 2013 - 12:07 AM
Then go to the download page and get the 1.4.6 version - I don't know its there
Now i know
, which works for 1.4.7. No need for a big text like that, it just makes you look bad. -sizes bugged out
SoSoRandom #239
Posted 08 April 2013 - 12:56 AM
so how do i send and receive?
PixelToast #240
Posted 08 April 2013 - 04:45 AM
so how do i send and receive?
on what?
everything is documented ffs
Mackan90096 #241
Posted 10 April 2013 - 09:26 AM
How do I install it?
PixelToast #242
Posted 10 April 2013 - 01:48 PM
like any other mod .-.
download it and drop it in the mods folder
SuicidalSTDz #243
Posted 10 April 2013 - 03:16 PM
You'll need Forge Mod Loader as well (Hoping you already knew that since you should have CC installed as well..)
Mackan90096 #244
Posted 10 April 2013 - 07:53 PM
Yeah.. I figured it out… It was that I didn't find the peripherals ingame
brandonf1218 #245
Posted 15 April 2013 - 06:35 AM
I have an issue with the textures on all 1.5+ versions. All the textures are broken and is really hard to tell things apart


brandonf1218 #246
Posted 15 April 2013 - 07:20 AM
I have an issue with the textures on all 1.5+ versions. All the textures are broken and is really hard to tell things apart




Actually i found the issue. The issue is Optifine. Could you possibly update where it fixes this?
immibis #247
Posted 15 April 2013 - 02:58 PM
Blame optifine for being broken?
iownall555 #248
Posted 15 April 2013 - 06:38 PM
I'm not completely aware at what purpose this would serve (other than sounding slightly different) but do you plan on implementing over waves (sine, triangle, sawtooth etc) for the speaker peripheral?
LNETeam #249
Posted 30 April 2013 - 10:08 PM
I have an issue with the textures on all 1.5+ versions. All the textures are broken and is really hard to tell things apart




Actually i found the issue. The issue is Optifine. Could you possibly update where it fixes this?

I have the same problem
immibis #250
Posted 01 May 2013 - 12:09 AM
Optifine's problem until proven otherwise.
PixelToast #251
Posted 01 May 2013 - 10:24 AM
my friend on my server uses optifine, but it never does that o.o
but it glitches all the time
and why do your textures look fullbright :s
Ashton #252
Posted 02 May 2013 - 08:48 PM
This is a small program, but it really shows (imo) the true potential of this mod (specifically the Adventure Game Interface):

Spoilerlocal p = peripheral.wrap("left")
local w = p.getWorld(0)
local ID = w.getBlockID(491, 99, -122)

while true do
os.pullEvent("redstone")
if ID == 0 then
w.setBlock(491, 97, -124, 2467, 0)
w.setBlock(491, 97, -122, 2467, 0)
w.setBlock(491, 97, -123, 2467, 0)
w.setBlock(491, 98, -124, 2467, 0)
w.setBlock(491, 98, -123, 2467, 2)
w.setBlock(491, 98, -122, 2467, 0)
w.setBlock(491, 99, -124, 2467, 0)
w.setBlock(491, 99, -122, 2467, 0)
w.setBlock(491, 99, -123, 2467, 0)
w.setBlock(490, 96, -116, 2461, 0)
w.setBlock(483, 96, -116, 2461, 0)
w.setBlock(490, 96, -129, 2461, 0)
w.setBlock(483, 96, -129, 2461, 0)
w.setBlock(483, 97, -124, 2461, 0)
w.setBlock(483, 97, -124, 2461, 0)
sleep(5)
end
end

I've actually got a 3x3 door that when it opens is destroyed, and several destructible blocks sitting in the room (using the LegendGear mod, so it's a door with an iron lock and pots) when the player steps on a pressure plate upon leaving the room, the AGI checks the ID of the "door" and if the block is missing (i.e. ID 0, air) it proceeds to replace all the missing blocks in the room, restoring it to the same state the now-gone player had when he entered. This allowed for fully self-resetting adventure maps when paired with trapped chests, command blocks, and ForgeEssentials (which allows monster spawning/killing and enchantment/healing/etc through commands) Specifically I'm using this to put maps on my SMP server and allow player/s to play through them and I never have to reset them.
immibis #253
Posted 05 May 2013 - 08:06 AM
55.0.0:
  • Updated to Minecraft 1.5.2 (before CC itself :o/>)
dragonmaster90 #254
Posted 06 May 2013 - 10:40 AM
very cool mod! :D/>

i also made a program that might be handy for reading/writeng code on magcards/rfid cards

pics:
(speaker on the back, also dont mind the other things… just some stuff that i was been messing around… :)/>)



heres tha program: [Lua] rfid-magcard reader (cc) - Pastebin.com
PixelToast #255
Posted 06 May 2013 - 12:51 PM
very cool mod! :D/>

i also made a program that might be handy for reading/writeng code on magcards/rfid cards
nice program
some things that would be useful would automatically wrap the peripherals ( and possibly take options that require that peripheral off the list )
also localize the functions and variables
dragonmaster90 #256
Posted 06 May 2013 - 01:18 PM
very cool mod! :D/>

i also made a program that might be handy for reading/writeng code on magcards/rfid cards
nice program
some things that would be useful would automatically wrap the peripherals ( and possibly take options that require that peripheral off the list )
also localize the functions and variables

i tried to do that but there was some errors that i didnt know how to fix… tnx anyway :)/> (and for the tips;))
Pecacheu #257
Posted 06 May 2013 - 03:18 PM
Does anybody know how to tell what block a player is looking at with the Adventure Map Interface? I know it's possible, but it would probably involve some pretty complex math.

Oh, and by the way there is no "getBlockMetadata(x, y, z)" function for loaded worlds. It just causes an "attempt to call nil" error. Is this a bug or something?
Imgoodisher #258
Posted 12 May 2013 - 03:13 PM
Oh, and by the way there is no "getBlockMetadata(x, y, z)" function for loaded worlds. It just causes an "attempt to call nil" error. Is this a bug or something?

I had the same problem. Its actually called 'getMetadata', not 'getBlockMetadata'
Xenres #259
Posted 14 May 2013 - 12:44 PM
Optifine's problem until proven otherwise.

Optifine doesn't cause any problems with this mod. I have the following mods

Spoiler- MC 1.5.1
- CC 1.5.2
- Immibis Core 54.0.2
- Immibis Peripherals 54.0.0
- Optifine 1.5.1 HD U D1
- Rei's minimap 1.0
- MC Forge 7.7.2.682

Screenshot:
Spoiler

I receive no errors with it, and never have any graphics related glitches. Perhaps one of your mods needs to be updated?
heldplayer #260
Posted 14 May 2013 - 01:35 PM
Optifine's problem until proven otherwise.

Optifine doesn't cause any problems with this mod. I have the following mods

Spoiler- MC 1.5.1
- CC 1.5.2
- Immibis Core 54.0.2
- Immibis Peripherals 54.0.0
- Optifine 1.5.1 HD U D1
- Rei's minimap 1.0
- MC Forge 7.7.2.682

Screenshot:
Spoiler

I receive no errors with it, and never have any graphics related glitches. Perhaps one of your mods needs to be updated?
Just because it doesn't cause problems for you doesn't mean it doesn't for others. Optifine does some funky stuff that might not affect you, but could affect others.
8uurg #261
Posted 20 May 2013 - 01:45 PM
Is it possible to read-write at the same time? I want to read a card, and directly change the data on it without having to swipe twice!
Pecacheu #262
Posted 20 May 2013 - 02:44 PM
I have no idea how to make the speaker work. Ive made a real speaker play a song before in C, so I took the code I wrote for that and "lua-fied" it:

--Code to find the side the speaker is on goes here.
if SpeakerSide ~= false then
   speaker = peripheral.wrap(SpeakerSide)
end
RandomSong = {95, 98, 103, 127, 153, 169, 186, 196, 194, 189, 183, 175, 171, 179,
184, 181, 181, 180, 169, 157, 153, 156, 155, 151, 149, 150, 146, 141, 137, 129, 125, 140, 154, 161,
169, 172, 176, 185, 183, 173 ...}
--The actual table is MUCH longer.
if speaker then
  speaker.setAttenuation(0)
  for k, v in pairs(RandomSong) do
	speaker.start(1, v)
	sleep(0.01)
  end
  speaker.shutdown()
end
But it's not working at all! The speaker is just buzzing randomly!
santa22 #263
Posted 21 May 2013 - 01:07 AM
I get a weird problem when i install it, im using Multi MC and minecraft 1.5.1

Mods i have:
Minecraft forge 7.7.2.682
ReiMinimapV3.3_04
Optifine_HD_U_B1
Immibis-Pheripherals-54.0.0
CodeChickenCore
NEI
ComputerCraft
Immibis-Cor-e54.0.2

Heres what multimc says
Spoiler2013-05-21 00:47:33 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-flash2.png because of broken aspect ratio and not animation
2013-05-21 00:47:33 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-flash1.png because of broken aspect ratio and not animation
2013-05-21 00:47:33 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-flash3.png because of broken aspect ratio and not animation
2013-05-21 00:47:33 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-flash0.png because of broken aspect ratio and not animation
2013-05-21 00:47:35 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-cover-long.png because of broken aspect ratio and not animation
2013-05-21 00:47:39 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/nic-thinside.png because of broken aspect ratio and not animation
2013-05-21 00:47:39 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-side-up.png because of broken aspect ratio and not animation
2013-05-21 00:47:39 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-side.png because of broken aspect ratio and not animation
2013-05-21 00:47:39 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-bottom-small.png because of broken aspect ratio and not animation
2013-05-21 00:47:40 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-status.png because of broken aspect ratio and not animation
2013-05-21 00:47:42 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-server-side.png because of broken aspect ratio and not animation
2013-05-21 00:47:44 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-cover-short.png because of broken aspect ratio and not animation
2013-05-21 00:47:46 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/cp-panel-blank.png because of broken aspect ratio and not animation
2013-05-21 00:47:47 [WARNING] [Minecraft-Client] TextureManager.createTexture: Skipping mods/immibis/ccperiphs/textures/blocks/rfw-cover-top.png because of broken aspect ratio and not animation

Everything works fine, but the things look weird, heres what it looks like.
(the name tooltip shows what everything is)

Spoiler





(and there is cable on it also)


Plz help i really want to get this figured out
santa22 #264
Posted 21 May 2013 - 01:16 AM
Problem fixed: Removed optifine from minecraft.
Pecacheu #265
Posted 21 May 2013 - 03:35 PM
Problem fixed: Removed optifine from minecraft.
I tested on several computers, and that optifine texture bug only seems to happen on windows machines. Doesn't happen on macs (don't know about linux, I don't have any linux computers.) The bug with optifine sometimes causing blinky CC monitors, though, seems to happen on everything. I hope somebody fixes it, I like optifine.
BigSHinyToys #266
Posted 22 May 2013 - 02:58 AM
I have no idea how to make the speaker work. Ive made a real speaker play a song before in C, so I took the code I wrote for that and "lua-fied" it:
–snip –
But it's not working at all! The speaker is just buzzing randomly!
Not exactly the best example of speaker usage but might help. http://pastebin.com/RmbMJSsv
Pecacheu #267
Posted 22 May 2013 - 11:10 AM
Not exactly the best example of speaker usage but might help. http://pastebin.com/RmbMJSsv

Thanks. That works much better. I just wish that the speaker could do something other than basic square waves, like play ogg files on a floppy disc maybe?
Azzar #268
Posted 22 May 2013 - 03:38 PM
Not exactly the best example of speaker usage but might help. http://pastebin.com/RmbMJSsv

Thanks. That works much better. I just wish that the speaker could do something other than basic square waves, like play ogg files on a floppy disc maybe?

Have you tried to use the IronNoteBlock or Adventuremap Block? I got some pretty complex songs running for my elevator using 3 Iron Noteblocks and a computer. Also there is a mod that will create a schematic that you can place in your world. This mod converts any midi file into a schematic design using old fashion note blocks.
Azzar #269
Posted 23 May 2013 - 05:35 AM
Not exactly the best example of speaker usage but might help. http://pastebin.com/RmbMJSsv

Thanks. That works much better. I just wish that the speaker could do something other than basic square waves, like play ogg files on a floppy disc maybe?

Have you tried to use the IronNoteBlock or Adventuremap Block? I got some pretty complex songs running for my elevator using 3 Iron Noteblocks and a computer. Also there is a mod that will create a schematic that you can place in your world. This mod converts any midi file into a schematic design using old fashion note blocks.


I am curious though? Does anyone know the proper usage for the Adventure Map function w.playSoud()? The info states that the sound is a string… I have tried a few sounds from the resources folder with no luck. Does it play a .ogg file? Any help here would be appreciated. BTW I just want to thank Immibis for this mod! What an incredible mod! I am making a computer powered adventure map and I keep kicking myself for the complex designs I have made that are reduced to 11kb of text. Geeze I only wish I knew about this mod months ago! LOL
Azzar #270
Posted 23 May 2013 - 07:36 AM
Not exactly the best example of speaker usage but might help. http://pastebin.com/RmbMJSsv

Thanks. That works much better. I just wish that the speaker could do something other than basic square waves, like play ogg files on a floppy disc maybe?

Have you tried to use the IronNoteBlock or Adventuremap Block? I got some pretty complex songs running for my elevator using 3 Iron Noteblocks and a computer. Also there is a mod that will create a schematic that you can place in your world. This mod converts any midi file into a schematic design using old fashion note blocks.


I am curious though? Does anyone know the proper usage for the Adventure Map function w.playSoud()? The info states that the sound is a string… I have tried a few sounds from the resources folder with no luck. Does it play a .ogg file? Any help here would be appreciated. BTW I just want to thank Immibis for this mod! What an incredible mod! I am making a computer powered adventure map and I keep kicking myself for the complex designs I have made that are reduced to 11kb of text. Geeze I only wish I knew about this mod months ago! LOL

Ok an update to this. Searching through the threads I discovered a "play" api which is quite a nifty api. It converts .nbs files (Note block studio files) into songs that can be played with a computer and Misc Peripheral's Iron Note Block. I am testing this out but I was already using this setup to make my songs for my elevator and suspected this was possible. So Using the mod Note Block Studio you can download any midi file, make alterations to it to make it compatible with minecraft (most are compatible by default), then instead of saving it as a complex schematic you can save the midi file as a .nbs file. Drop that .nbs file into the computercraft folder where you have the "song" api and there you have it. Awsome! Now to get rid of all that code i wrote for my elevator music

-BTW I noticed the second post finally and see now the proper usage of w.playSound()
Azzar #271
Posted 24 May 2013 - 03:33 PM
52.1.0:
  • Added cryptographic accelerator.
  • Added adventure map interface. Uncraftable. Must be enabled in config or it won't do anything - enabled by default in SSP only.
  • Fixed setInsertCardLight not causing render updates.

Is there a way to use the entity functions with the Adventure Map Interface with mobs??? or are they considered tile entities? I see some methods that allow you to treat the player pl as an entity ent but thats it. I would need to "load" the entity to access the functions for it and I see no other methods that would allow you to load ent functions other than ent= pl.asEntity().
Azzar #272
Posted 25 May 2013 - 10:24 AM
52.1.0:
  • Added cryptographic accelerator.
  • Added adventure map interface. Uncraftable. Must be enabled in config or it won't do anything - enabled by default in SSP only.
  • Fixed setInsertCardLight not causing render updates.

Is there a way to use the entity functions with the Adventure Map Interface with mobs??? or are they considered tile entities? I see some methods that allow you to treat the player pl as an entity ent but thats it. I would need to "load" the entity to access the functions for it and I see no other methods that would allow you to load ent functions other than ent= pl.asEntity().

I've searched a bit and I am not finding much information about the api for the Adventure Map Interface. I have read all the info I can on this site including the api documentation. So I hope you are reading this Immibis and can answer a few questions…. One- is there a site where I can see some example programs using the api? (specifically ent and te examples would be helpful) Two- was the issue with getMetaData(x, y, z) returning the block ID ever resolved for the latest 1.4.6 MC version? Third: How is it that such little is known about your mod and the Adventure Map Interface? Like seriously? I program alot and even though I have not got into modding for minecraft, that Adventure Block and a bit of lua coding has allowed me to replace quite a few of my mods with my own code. What a powerful tool this is!!! Thanks to your hard work Immibis in an afternoon I wrote the code that turns a Computer,Wireless Modem,Adventure Map Interface, and Iron Noteblock into a remote activated sound player capable of reproducing any sound in the game and also any music file created using Note Block Studios. Simply by sending that computer the name and length of time to play. Wow amazing!
immibis #273
Posted 26 May 2013 - 10:53 PM
Right now, there isn't a way to access other entities.
Azzar #274
Posted 28 May 2013 - 06:21 AM
Right now, there isn't a way to access other entities.

ya was kinda thinking as much considering what info I was finding. Still NBT access from a computer and the rest is gonna make my map very interesting! I think I just found a replacement for frames at least in my designs which has been a big thing for me. Even if you were not a modder you could almost write your own mods using that interface. I can see how I could write a forcefield program with it, a command line editor. The list goes on.. Anyhow thanks for your reply and your amazing mods. I will post a link to a schematic in the future for a house I have designed that is totally computer controlled and it shows off your mod quite well. Looks like such a posting is needed otherwise that interface would a be a staple for map makers!

As a side note I ran into a slight issue with the Adventure Map Interface texture. It seems to turn into a black cube only when adjacent to a computer and only on a server (1.4.7 Forge). It seems to be ok when you first place the block but when the server is reloaded it changes texture. I realize that mod conflicts could be the cause or even optifine but considering there wont be any updates for those mods, I was thinking maybe you could shed some light on this or help narrow down the cause?
Mydelko #275
Posted 29 May 2013 - 08:04 AM
Cryptographic accelerator API

Blah blah blah…
I didn't understand any of that.
immibis #276
Posted 30 May 2013 - 04:50 AM
55.0.1 is reobfuscated with SRG names.

I didn't understand any of that.
If you're trying to ask a question, be more specific.
MudkipTheEpic #277
Posted 03 June 2013 - 03:04 PM
Suggestion:

Allow turtles to be able to interact with the mag card reader/writer. Maybe a new method but just for turtles like reader.scanCard()?
ETHANATOR360 #278
Posted 05 June 2013 - 05:48 PM
i dont know if you could implement this but it would be awsome if the speaker had a 3rd argument that would determine how long the speaker would play the sound. i tried to make a game with sound but the current system made it very hard and my speaker would just buzz without stopping
Script Kiddie #279
Posted 10 June 2013 - 04:52 AM
Hello I'm new in computercraft.
when i was installed immibis-core, its still fine untill immibis-peripherals installed then I got this crash:

Spoiler
---- Minecraft Crash Report ----
// I'm sorry, Dave.

Time: 10/06/13 15:45
Description: Failed to start game

java.lang.ClassCastException: net.minecraft.client.renderer.texture.Texture cannot be cast to TextureNM
	at TextureNM.func_94281_a(TextureNM.java:46)
	at net.minecraft.client.renderer.texture.Stitcher.func_94306_e(Stitcher.java:69)
	at net.minecraft.client.renderer.texture.TextureMap.func_94247_b(TextureMap.java:158)
	at net.minecraft.client.renderer.RenderEngine.func_94152_c(RenderEngine.java:699)
	at net.minecraft.client.renderer.RenderEngine.func_78352_b(RenderEngine.java:574)
	at cpw.mods.fml.client.FMLClientHandler.onInitializationComplete(FMLClientHandler.java:247)
	at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:478)
	at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
	at net.minecraft.client.Minecraft.run(Minecraft.java:732)
	at java.lang.Thread.run(Unknown Source)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
	Minecraft Version: 1.5.2
	Operating System: Windows 7 (x86) version 6.1
	Java Version: 1.7.0_21, Oracle Corporation
	Java VM Version: Java HotSpot(TM) Client VM (mixed mode, sharing), Oracle Corporation
	Memory: 394775264 bytes (376 MB) / 518979584 bytes (494 MB) up to 518979584 bytes (494 MB)
	JVM Flags: 2 total; -Xms512m -Xmx512m
	AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
	Suspicious classes: FML and Forge are installed
	IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
	FML: MCP v7.51 FML v5.2.2.684 Minecraft Forge 7.8.0.684 Optifine OptiFine_1.5.2_HD_U_D3 23 mods loaded, 23 mods active
	mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_RedstoneArmor{1.0} [mod_RedstoneArmor] ([1.5.2] Useful Redstone Mod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_RedstoneTools{1.0} [mod_RedstoneTools] ([1.5.2] Useful Redstone Mod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_ReiMinimap{v3.3_05 [1.5.2]} [mod_ReiMinimap] ([1.5.2]ReiMinimap_v3.3_05.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	DirtyMod{1.4.1.0} [AyrAs Dirty Mod] (AyrAs_Dirty_Mod_1.4.1.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	Backpack{1.9.11} [Backpack] (backpack-1.9.11-1.5.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	ComputerCraft{1.53} [ComputerCraft] (ComputerCraft1.53.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	CCTurtle{1.53} [ComputerCraft Turtles] (ComputerCraft1.53.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	DivingGear{1.3.8} [Diving Gear] (Diving-Gear-universal-1.3.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	iChunUtil{1.0.1} [iChunUtil] (iChunUtil1.0.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	ImmibisCore{55.1.3} [Immibis Core] (immibis-core-55.1.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	ImmibisPeripherals{55.0.1} [Immibis's Peripherals] (immibis-peripherals-55.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	Pokeball{1.0} [Pokeball] (Pokeball V1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	PortalGun{1.5.1} [PortalGun] (PortalGun1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	DarrenPR_RottenFleshToLeather{1.0.0} [Rotten Flesh To Leather] (Rotten Flesh To Leather MC 1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_SmartMoving{13.9} [Smart Moving] (Smart Moving Universal for ModLoader or Minecraft Forge or MCPC+.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_SmartRender{1.1} [Smart Render] (Smart Moving Universal for ModLoader or Minecraft Forge or MCPC+.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	mod_SmeltableGravel{1.5.1} [mod_SmeltableGravel] (SmeltableGravel_FML_ML_1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	camping{1.0.2} [The Camping Mod] (The Camping Mod 1.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	VanillaRecipes_000{2.0.0} [Vanilla Recipes] (Vanilla Recipes.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	weaponmod{1.5.2 v1.11.3} [Balkon's WeaponMod] (WeaponMod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
	LWJGL: 2.4.2
	OpenGL: Intel(R) HD Graphics Family GL version 3.1.0 - Build 8.15.10.2345, Intel
	Is Modded: Definitely; Client brand changed to 'fml,forge'
	Type: Client (map_client.txt)
	Texture Pack: Default
	Profiler Position: N/A (disabled)
	Vec3 Pool Size: ~~ERROR~~ NullPointerException: null
immibis #280
Posted 11 June 2013 - 09:31 PM
What jar-mods do you have?
immibis #281
Posted 12 June 2013 - 11:42 PM
55.0.2:
  • Removed all remaining references to ModLoader.
MudkipTheEpic #282
Posted 13 June 2013 - 02:06 AM
I hate to re-quote this, but:

Suggestion:

Allow turtles to be able to interact with the mag card reader/writer. Maybe a new method but just for turtles like reader.scanCard()?
Script Kiddie #283
Posted 13 June 2013 - 04:15 AM
What jar-mods do you have?
i have the last version, including the new update
with your updated peripheral mod i got this crash:

---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.
Time: 13/06/13 15:12
Description: Failed to start game
java.lang.ClassCastException: net.minecraft.client.renderer.texture.Texture cannot be cast to TextureNM
at TextureNM.func_94281_a(TextureNM.java:46)
at net.minecraft.client.renderer.texture.Stitcher.func_94306_e(Stitcher.java:69)
at net.minecraft.client.renderer.texture.TextureMap.func_94247_b(TextureMap.java:158)
at net.minecraft.client.renderer.RenderEngine.func_94152_c(RenderEngine.java:699)
at net.minecraft.client.renderer.RenderEngine.func_78352_b(RenderEngine.java:574)
at cpw.mods.fml.client.FMLClientHandler.onInitializationComplete(FMLClientHandler.java:247)
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:478)
at net.minecraft.client.MinecraftAppletImpl.func_71384_a(SourceFile:56)
at net.minecraft.client.Minecraft.run(Minecraft.java:732)
at java.lang.Thread.run(Unknown Source)

A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
Minecraft Version: 1.5.2
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.7.0_21, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode, sharing), Oracle Corporation
Memory: 411987120 bytes (392 MB) / 518979584 bytes (494 MB) up to 518979584 bytes (494 MB)
JVM Flags: 2 total; -Xms512m -Xmx512m
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v7.51 FML v5.2.2.684 Minecraft Forge 7.8.0.684 Optifine OptiFine_1.5.2_HD_U_D3 26 mods loaded, 26 mods active
mcp{7.44} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
FML{5.2.2.684} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
Forge{7.8.0.684} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
CodeChickenCore{0.8.6.15} [CodeChicken Core] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
NotEnoughItems{1.5.2.25} [Not Enough Items] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_RedstoneArmor{1.0} [mod_RedstoneArmor] ([1.5.2] Useful Redstone Mod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_RedstoneTools{1.0} [mod_RedstoneTools] ([1.5.2] Useful Redstone Mod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_ReiMinimap{v3.3_05 [1.5.2]} [mod_ReiMinimap] ([1.5.2]ReiMinimap_v3.3_05.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
DirtyMod{1.4.1.0} [AyrAs Dirty Mod] (AyrAs_Dirty_Mod_1.4.1.0.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
Backpack{1.9.11} [Backpack] (backpack-1.9.11-1.5.2.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
ComputerCraft{1.53} [ComputerCraft] (ComputerCraft1.53.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
CCTurtle{1.53} [ComputerCraft Turtles] (ComputerCraft1.53.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
CC_Scanner{0.4} [CC Scanner] (CCScanner_CC1.51-0.4.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
DivingGear{1.3.8} [Diving Gear] (Diving-Gear-universal-1.3.8.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
iChunUtil{1.0.1} [iChunUtil] (iChunUtil1.0.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
ImmibisCore{55.1.3} [Immibis Core] (immibis-core-55.1.3.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
ImmibisPeripherals{55.0.2} [Immibis's Peripherals] (immibis-peripherals-55.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
Pokeball{1.0} [Pokeball] (Pokeball V1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
PortalGun{1.5.1} [PortalGun] (PortalGun1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
DarrenPR_RottenFleshToLeather{1.0.0} [Rotten Flesh To Leather] (Rotten Flesh To Leather MC 1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_SmartMoving{13.9} [Smart Moving] (Smart Moving Universal for ModLoader or Minecraft Forge or MCPC+.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_SmartRender{1.1} [Smart Render] (Smart Moving Universal for ModLoader or Minecraft Forge or MCPC+.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
mod_SmeltableGravel{1.5.1} [mod_SmeltableGravel] (SmeltableGravel_FML_ML_1.5.1.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
camping{1.0.2} [The Camping Mod] (The Camping Mod 1.0.2.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
VanillaRecipes_000{2.0.0} [Vanilla Recipes] (Vanilla Recipes.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
weaponmod{1.5.2 v1.11.3} [Balkon's WeaponMod] (WeaponMod.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
LWJGL: 2.4.2
OpenGL: Intel(R) HD Graphics Family GL version 3.1.0 - Build 8.15.10.2345, Intel
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: ~~ERROR~~ NullPointerException: null
i dont know why this happen. i'll try to reinstall my mincraft
Azzar #284
Posted 13 June 2013 - 12:05 PM
Just curious, does the nbt commands even function for the adventure map block for 1.47. I have tried the example program and many other ways of using it and I continue getting the old attempt to call a nil value. I have tried with and without the api provided not having any luck. I have used other fuctions with no problems just seems to be this one set of functions.
GopherAtl #285
Posted 13 June 2013 - 12:07 PM
super-trivial feature request for whenever you next update, immibis: Add the peripheral attachment name to the event arguments on all the peripherals? Currently it's impossible for a central computer to handle an array of scanners around a base that do different things with the new lan cables, as there is no way for the computer to know which device an event came from.
PixelToast #286
Posted 13 June 2013 - 12:45 PM
– Returns the metadata at the given coordinates. Loads the chunk if necessary.
meta = w.getBlockMetadata(x, y, z)
needs to be w.getMetadata(x, y, z)
ETHANATOR360 #287
Posted 13 June 2013 - 10:05 PM
never mind i found out what the tape item is
Edited on 13 June 2013 - 08:07 PM
Script Kiddie #288
Posted 14 June 2013 - 12:32 AM
Hey now i know i've gotmsome errors.
This mod doesn't compatible with glsl shader mod, can you fix this?

thx btw
ETHANATOR360 #289
Posted 15 June 2013 - 05:04 PM
when will the tape drive be implemented?
Xakorik #290
Posted 16 June 2013 - 12:04 PM
Would encrypting a hash be too much?
immibis #291
Posted 18 June 2013 - 11:41 PM
when will the tape drive be implemented?
Perhaps never, just use a file.

55.0.3:
  • Added peripheral side/name to mag_write_done and mag_swipe events.
  • Added old data to mag_write_done event.
  • Added distance to rfid_detected event.
  • RFID readers can scan with a higher-than-default radius, up to 16 blocks; however they will not return any data for cards farther than 5 blocks.
  • They will still queue a rfid_detected event allowing you to see the existence of the card.
  • Halved the default time it takes to scan for RFID cards, and made it configurable.
immibis #292
Posted 19 June 2013 - 08:02 PM
55.0.4:
  • Fixed crash when right-clicking a mag-card peripheral.
ETHANATOR360 #293
Posted 20 June 2013 - 10:09 PM
when will the tape drive be implemented?
Perhaps never, just use a file.

55.0.3:
  • Added peripheral side/name to mag_write_done and mag_swipe events.
  • Added old data to mag_write_done event.
  • Added distance to rfid_detected event.
  • RFID readers can scan with a higher-than-default radius, up to 16 blocks; however they will not return any data for cards farther than 5 blocks.
  • They will still queue a rfid_detected event allowing you to see the existence of the card.
  • Halved the default time it takes to scan for RFID cards, and made it configurable.
but thats to easy one of the things i like about programming is working around limitations
Creeper367 #294
Posted 20 June 2013 - 10:26 PM
I hate to re-quote this, but:

Suggestion:

Allow turtles to be able to interact with the mag card reader/writer. Maybe a new method but just for turtles like reader.scanCard()?
I think this is a very good suggestion. Maybe someone had ought to spend a moment to consider at. JUST CONSIDER IT >:/
Thank you for your time in advance.
:D/>
GuachaFTW #295
Posted 30 June 2013 - 01:11 PM
I have an issue, when i try to read the Magnetic card I don't get a true condition like in this simple program:

local event, arg, arg2 = os.pullEvent("mag_swipe")
if arg == haveaccess then
  print("you have access")
else
  print("You have no access")
end
the problem is, when I use the "Haveaccess" card, It returns, "You have no access", and when i tried with a card with data "Name", it returned "You have access", So if i can have some help there it would be very useful
immibis #296
Posted 01 July 2013 - 04:39 AM
I can't even see the whole code on my phone (Opera Mini's fault, not yours) but it looks like you forgot a pair of quote marks.
Ashton #297
Posted 03 July 2013 - 08:18 PM
Not sure wheather to post this here or in general/ask since it's mostly code, but…

I'm building a SMP-adventure-map with multiple "dungeons" and am thinking a good way to keep track of these (and the locations they open) is using the mag-cards/RFID cards. My plan is to fill the data-block of the card with 0s and when a specific dungeon is completed and new area unlocked change it's corresponding 0 to a 1.

i.e.:
000000000000000

Dungeon 3 is unlocked:
001000000000000

Dungon 3 and 5 are unlocked:
001010000000000

How could I easily setup the reader/writers to change ONLY the bit that's related wo their dungeon (so that all other progress is not erased)? My only thought is to use complex strings of IF statements (i.e. "if data = 000000000000000 or 000000000000001 or 000000000000010 or 000000000000011 or 000000000000010…. (etc) then data == data + 100000000000000" which would take a LOT of time to code into all 16 (or however many) locations…
immibis #298
Posted 03 July 2013 - 08:57 PM
Post that in Ask a Pro.
Remember you'll need the player to swipe their card twice - once to read the old value, once to write the new value.
Ashton #299
Posted 03 July 2013 - 09:13 PM
Post that in Ask a Pro.
Remember you'll need the player to swipe their card twice - once to read the old value, once to write the new value.

K, cross posted to ask.

Yeah, I figure I can use a prompt "Please swipe your keycard to verify your progress" (even if it's just reading the value) then "please swipe your card a second time to save your progress" or such

Thanks! :)/>
GuachaFTW #300
Posted 04 July 2013 - 01:42 PM
Can I use the wired modem with non computer blocks?, like for example, the Mag-card reader
immibis #301
Posted 04 July 2013 - 09:05 PM
No, but you can use the vanilla-CC wired modem for that.
justync7 #302
Posted 06 July 2013 - 08:55 AM
You should add a player_kill or player_death event, so you can detect kills, and deaths by environment because player_respawn is unreliable and impossible to keep score of kills, and you should also add triggering particle effects at a certain xyz, thanks!
immibis #303
Posted 11 July 2013 - 06:24 AM
56.0.0:
  • Updated to Minecraft 1.6.2.
immibis #304
Posted 11 July 2013 - 06:36 AM
56.0.0:
  • Updated to Minecraft 1.6.2.
Xakorik #305
Posted 11 July 2013 - 08:45 PM
Not sure wheather to post this here or in general/ask since it's mostly code, but…

I'm building a SMP-adventure-map with multiple "dungeons" and am thinking a good way to keep track of these (and the locations they open) is using the mag-cards/RFID cards. My plan is to fill the data-block of the card with 0s and when a specific dungeon is completed and new area unlocked change it's corresponding 0 to a 1.

i.e.:
000000000000000

Dungeon 3 is unlocked:
001000000000000

Dungon 3 and 5 are unlocked:
001010000000000

How could I easily setup the reader/writers to change ONLY the bit that's related wo their dungeon (so that all other progress is not erased)? My only thought is to use complex strings of IF statements (i.e. "if data = 000000000000000 or  000000000000001 or 000000000000010 or 000000000000011 or 000000000000010…. (etc) then data == data + 100000000000000" which would take a LOT of time to code into all 16 (or however many) locations…

I believe you should simply add the dungeon value by converting the string to a number first then converting back afterwords.
immibis #306
Posted 11 July 2013 - 11:11 PM
56.0.1:
  • Fixed crash on startup on servers.
PixelToast #307
Posted 11 July 2013 - 11:13 PM
already updated? that was fast
Ashton #308
Posted 12 July 2013 - 02:58 AM
Is it possible to make RFIDs re-writable? I just realized the whole system I was trying to build was worthless with one-time-write RFIDs…
electrodude512 #309
Posted 12 July 2013 - 09:56 AM
Not sure wheather to post this here or in general/ask since it's mostly code, but…

I'm building a SMP-adventure-map with multiple "dungeons" and am thinking a good way to keep track of these (and the locations they open) is using the mag-cards/RFID cards. My plan is to fill the data-block of the card with 0s and when a specific dungeon is completed and new area unlocked change it's corresponding 0 to a 1.

i.e.:
000000000000000

Dungeon 3 is unlocked:
001000000000000

Dungon 3 and 5 are unlocked:
001010000000000

How could I easily setup the reader/writers to change ONLY the bit that's related wo their dungeon (so that all other progress is not erased)? My only thought is to use complex strings of IF statements (i.e. "if data = 000000000000000 or 000000000000001 or 000000000000010 or 000000000000011 or 000000000000010…. (etc) then data == data + 100000000000000" which would take a LOT of time to code into all 16 (or however many) locations…


function getDungeon(n)			--return status of dungeon #n
    local str=readcard()
	return str:sub(n,n)
end

function setDungeon(n,value)	--sets dungeon #n's state to value
    local str=readcard()
	str=str:sub(1,n-1)..tostring(value)..str:sub(n+1,#str)
	writecard(str)
end

readcard() should read the string of numbers off of the card and writecard() should write it.
PixelToast #310
Posted 12 July 2013 - 11:19 AM
Is it possible to make RFIDs re-writable? I just realized the whole system I was trying to build was worthless with one-time-write RFIDs…
sorry, nope
only mag cards are re-writable
Ashton #311
Posted 12 July 2013 - 11:34 AM
Is it possible to make RFIDs re-writable? I just realized the whole system I was trying to build was worthless with one-time-write RFIDs…
sorry, nope
only mag cards are re-writable

Excuse me while I bash my head against the wall… and swear at the trolls who suggested in my other post to use RFIDs…

*sigh* at least the basic code is still useable, I just have to go back to having players swipe-swipe-swipe in and out of dungeons…
PixelToast #312
Posted 12 July 2013 - 11:54 AM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database
Ashton #313
Posted 12 July 2013 - 03:08 PM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database

Each individual card keeps track of the player's progress, As they clear dungeons and/or gain key items/quests/etc the card's data changes.

In theory, yes, I could do that, but I'd have to use the webserver peripheral to connect to a MySQL DB, and even then I have no clue what the query strings are in LUA… (in short, a DB is beyond my lua skills right now, sadly…) :(/>
MxHn #314
Posted 14 July 2013 - 08:38 AM
First off, good work Immibis! This add-on is really amazing. I am not sure how hard this is going to be to code, but I think it world be great if you could add the ability for the Adventrue Map Interface to load other entities(namely mobs). It woulds make mob spawn systems easier (having a central spawn location and teleporting the mobs around the map,etc.). Thanks for the great add on!
MxHn #315
Posted 14 July 2013 - 08:39 AM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database

Each individual card keeps track of the player's progress, As they clear dungeons and/or gain key items/quests/etc the card's data changes.

In theory, yes, I could do that, but I'd have to use the webserver peripheral to connect to a MySQL DB, and even then I have no clue what the query strings are in LUA… (in short, a DB is beyond my lua skills right now, sadly…) :(/>
table?
Ashton #316
Posted 14 July 2013 - 01:16 PM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database

Each individual card keeps track of the player's progress, As they clear dungeons and/or gain key items/quests/etc the card's data changes.

In theory, yes, I could do that, but I'd have to use the webserver peripheral to connect to a MySQL DB, and even then I have no clue what the query strings are in LUA… (in short, a DB is beyond my lua skills right now, sadly…) :(/>
table?

Gotta make chairs first ;)/>

but seriously… I'm trying to read over some LUA programming tutorials in my (rather short) spare time, This is amazingly difficult for me because the syntax of Lua is *similar* but still quite different to the languages I use, so I keep slipping up and bugging my programs because I'm following conventions for other languages >.<
MxHn #317
Posted 14 July 2013 - 11:54 PM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database

Each individual card keeps track of the player's progress, As they clear dungeons and/or gain key items/quests/etc the card's data changes.

In theory, yes, I could do that, but I'd have to use the webserver peripheral to connect to a MySQL DB, and even then I have no clue what the query strings are in LUA… (in short, a DB is beyond my lua skills right now, sadly…) :(/>
table?

Gotta make chairs first ;)/>

but seriously… I'm trying to read over some LUA programming tutorials in my (rather short) spare time, This is amazingly difficult for me because the syntax of Lua is *similar* but still quite different to the languages I use, so I keep slipping up and bugging my programs because I'm following conventions for other languages >.<
Yeah, I keep slipping the capitalization in about 99% of my programs so I get *nil* calls :(/> . Tables are quite simple actualy. You can form the by making variables with braces(curly brackets?) like x={value1,value2,…}(keys start at 1) or like this x[string key or #] = value(for multi dememtions you need to do ex_table["key1"]={key(no"" here)={key=etc…}}(see this http://www.computerc...nfo/wiki/Tables). Sorta like c arrays except you can have string keys. As I understand, a database is just somthing that can contain data so you can DIY something with tables(very simple)? So multiple tables can be used to keep track(one for players, one for dungeons completed(ex. dungeon[player] = 000010000 and set up the 00's to be rewritten using string.gsub()) , etc) and the card can just act like a player ID(unique to each player). Time stamp can be implemented by using os.clock(in theory).

edit: I derped! there is a better way to do the database table. Just do a multidemention table like this: example_table["playername"]={dungeonnumber=false}
electrodude512 #318
Posted 18 July 2013 - 04:45 PM
why would you need to rewrite the data?
just give each player their own RFID and write other stuff to a database

Each individual card keeps track of the player's progress, As they clear dungeons and/or gain key items/quests/etc the card's data changes.

In theory, yes, I could do that, but I'd have to use the webserver peripheral to connect to a MySQL DB, and even then I have no clue what the query strings are in LUA… (in short, a DB is beyond my lua skills right now, sadly…) :(/>

Put the database server on a computercraft computer and write your own database program (which you obviously will understand).

Big problem with storing progress on their cards: they can just write all 1's to their card with their own reader or a hijacked one and gain access to anywhere.
MxHn #319
Posted 19 July 2013 - 08:36 AM
@elecorodude512:
good point with the card hijacking!
Seeker14491 #320
Posted 27 July 2013 - 02:41 AM
I've been having a lot of fun with the Adventure Map Peripheral, so thanks immibis, but I keep getting a specific explosion-related crash. I'm on Minecraft 1.5.2, and have no other mods other than Forge and ComputerCraft. These past few days I've been using the Adventure Map Peripheral to make a "Bomb Survival" map, where "bombs" rain down from the sky and explode shortly after landing on the ground. The "bombs" are just obsidian blocks which I "move" by repeatedly deleting/creating the block, and I have it explode by deleting the block and using the explode() method. Sometimes it works fine, but sometimes it crashes.Previously, I had tried to do the same thing, but with actual TNT blocks, and the same "ConcurrentModificationException" crash kept occuring. It seems more explosions happening at once increases the chance of crashing. Leaving the area while the explosions are taking place then coming back also triggers the crash sometimes.
Here is a log from a crash: http://pastebin.com/raw.php?i=NF8GWDEW
You can see a screenshot of raining bombs and massive destruction here: https://www.dropbox....25_14.53.01.png

Edit: I've updated to Minecraft 1.6.2, and I'm still having the same issue.
damnedsky #321
Posted 31 July 2013 - 09:02 AM
Hello everybody and welcome to a small brainteaser!

At the moment I am playing with the "Adventure Map Peripheral" and I am able to save a building(block by block) into a file using the textutils.serialize() on the table that keeps all the block information for that building.
The problem I have is that I need to also save the nbt data for all those blocks(currently only saving x, y, z, block id and metadata).
Before I start doing this and find out that I make huge files I wonder if there is a better way(a more space efficient way) of storing a table into a file.

- why save a building on file?
Because I need to make it appear and disappear at will for an adventure map
- why save nbt data?
Because chests and modded blocks
- how do you construct the table?
With table.insert()
- have you searched for any database API?
Yes but they are more effort than worth it and they still work with tables… also the nbt data is not all the same(structure/length) so databases are out of the equation.

I hope you all had a pleasant stay!
Sincerely,
sky
Rougeminner #322
Posted 31 July 2013 - 05:02 PM
Can someone point me in the right direction for an encryptor i got the one on the top of the page but is is just a test i can not find an encryptor and decryption program
PixelToast #323
Posted 31 July 2013 - 08:00 PM
Can someone point me in the right direction for an encryptor i got the one on the top of the page but is is just a test i can not find an encryptor and decryption program
http://pastebin.com/kztKdG9U
this
if you dont understand it then your probably not ready for an encryption program :P/>
damnedsky #324
Posted 03 August 2013 - 01:05 PM
hello everybody!

@immibis:
I am playing with the adventure peripheral for MC 1.5.2 and it seems that chests don't want to listen to the metadata when I use the w.setBlock() or w.setBlockWithoutNotify() functions. They face SOUTH no matter what meta i give the function.
damnedsky #325
Posted 03 August 2013 - 03:48 PM
me again!

I am in a difficult position where vanilla spawners and modded spawners do not work as intended with my present modpack setup(MC 1.5.2). Is there a way with the Adventure Peripheral to get an entity(monster/animal) at a specific position?
I would need to work with this entity as I would with a tileEntity and modify its nbt Data. That way I could spawn mobs with eggs and then "pimp" them out with everything I need and finally teleport them where i need.
MxHn #326
Posted 05 August 2013 - 09:56 AM
@damnedsky

well there are nbt editing functions for tile entities. At the time of writing Immibis has not implemented anything to do with working with entities except player entities I think.
MadEngineer #327
Posted 05 August 2013 - 01:45 PM
Hey guys, I have been having a strange error with Immibuscore. The funny thing is, I use the same version of everything on client (including forge) and it works. When I try to put it on the server, it doesnt. I have tested and the server works fine without immibus. Can you guys help me out? Here is info:

[INFO] Starting minecraft server version 1.5.2
[SEVERE] Encountered an unexpected exception NoClassDefFoundError
java.lang.NoClassDefFoundError: mods/immibis/core/porting/ClientProxy142
	at java.lang.Class.forName0(Native Method)
	at java.lang.Class.forName(Class.java:270)
	at cpw.mods.fml.common.Loader.identifyMods(Loader.java:331)
	at cpw.mods.fml.common.Loader.loadMods(Loader.java:480)
	at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:85)
	at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:350)
	at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:69)
	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:431)
	at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:573)
Caused by: java.lang.ClassNotFoundException: mods.immibis.core.porting.ClientProxy142
	at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
	... 9 more
Caused by: java.lang.RuntimeException: Attempted to load class mods/immibis/core/porting/ClientProxy142 for invalid side SERVER
	at cpw.mods.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:50)
	at cpw.mods.fml.relauncher.RelaunchClassLoader.runTransformers(RelaunchClassLoader.java:352)
	at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:225)
	... 11 more
[SEVERE] This crash report has been saved to: C:\Users\Doc\Desktop\modpack\server\server2.2\.\crash-reports\crash-2013-08-05_11.35.59-server.txt

Forge version: 7.8.1.738
Minecraft: 1.5.2
Immibus core: 55.0.4

I hope this is enough so you can fix this problem!
PixelToast #328
Posted 05 August 2013 - 11:27 PM
Hey guys, I have been having a strange error with Immibuscore. The funny thing is, I use the same version of everything on client (including forge) and it works. When I try to put it on the server, it doesnt. I have tested and the server works fine without immibus. Can you guys help me out? Here is info:

-snip-

Forge version: 7.8.1.738
Minecraft: 1.5.2
Immibus core: 55.0.4

I hope this is enough so you can fix this problem!
immibis core 55.0.4 is for minecraft 1.5.1
go get the latest for 1.5.2 (55.0.3) from here:
http://dl.dropboxuse...uilt/index.html

also note, it does not go into coremods
wrothmonk #329
Posted 08 August 2013 - 10:46 AM
Hey, I'm using the 1.6.2 version of the immibis core and peripherals and I'm having some trouble figuring out how to use the world or player methods given in the adventure map interface. Can anyone walk me through it?

EDIT: It would appear that the peripheral for the adventure interface doesn't have the world or player methods so can anyone tell me how to call the methods properly or are they just not updated or something?
MudkipTheEpic #330
Posted 08 August 2013 - 06:46 PM
Hey, I'm using the 1.6.2 version of the immibis core and peripherals and I'm having some trouble figuring out how to use the world or player methods given in the adventure map interface. Can anyone walk me through it?

EDIT: It would appear that the peripheral for the adventure interface doesn't have the world or player methods so can anyone tell me how to call the methods properly or are they just not updated or something?

You have to enable it in the config first.
wrothmonk #331
Posted 08 August 2013 - 06:52 PM
Hey, I'm using the 1.6.2 version of the immibis core and peripherals and I'm having some trouble figuring out how to use the world or player methods given in the adventure map interface. Can anyone walk me through it?

EDIT: It would appear that the peripheral for the adventure interface doesn't have the world or player methods so can anyone tell me how to call the methods properly or are they just not updated or something?

You have to enable it in the config first.
It is enabled. Either that or I'm somehow missing a line in the generated config file.
MxHn #332
Posted 09 August 2013 - 09:24 AM
are you calling the methods properly?
wrothmonk #333
Posted 09 August 2013 - 09:40 AM
Allow me to clarify:
Spoiler
is what I get when I run a program to get the methods for the adventure interface peripheral and the right. When I attempt to call any of the other methods given on page 10 it comes up with either no such method (when calling the methods without wrapping it) or attempt to call nil (when I do wrap it), which to my understanding means the methods dont exist, I'm not wrapping the peripheral properly, or I'm not calling the the method by the right name. I suspect a combination of the last two since it says on the api documentation that the world commands start with 'w.' instead of 'p.' when 'p.' is the peripheral wrap.
Here is an exact copy of what is in the imbibis.cfg
Spoiler

# Configuration file
####################
# block
####################
block {
	I:peripherals.block.id=3414
	I:peripherals.lan-wire.id=464
}

####################
# general
####################
general {
	B:autoAssign=false
	B:enableTPSCommand=true
	#
	S:peripherals.adminPassword=
	B:peripherals.enableAdventureMapInterface=true
	B:peripherals.enableCraftingAcceleratorComponents=true
	B:peripherals.enableCraftingCryptoAccelerator=true
	B:peripherals.enableCraftingLANModem=true
	B:peripherals.enableCraftingLANWire=true
	B:peripherals.enableCraftingMagCardDevice=true
	B:peripherals.enableCraftingMagCards=true
	B:peripherals.enableCraftingRFIDCards=true
	B:peripherals.enableCraftingRFIDReader=true
	B:peripherals.enableCraftingRFIDWriter=true
	B:peripherals.enableCraftingSpeaker=true
	B:peripherals.enableLAN=true
	B:peripherals.enableLANSenderSpoofing=true
	I:peripherals.rfidTicksPerScan=10
}
####################
# item
####################
item {
	I:peripherals.component=28230
	I:peripherals.magstripe=10153
	I:peripherals.rfid=16230
}
MysticT #334
Posted 09 August 2013 - 01:08 PM
Allow me to clarify:
Spoiler
is what I get when I run a program to get the methods for the adventure interface peripheral and the right. When I attempt to call any of the other methods given on page 10 it comes up with either no such method (when calling the methods without wrapping it) or attempt to call nil (when I do wrap it), which to my understanding means the methods dont exist, I'm not wrapping the peripheral properly, or I'm not calling the the method by the right name. I suspect a combination of the last two since it says on the api documentation that the world commands start with 'w.' instead of 'p.' when 'p.' is the peripheral wrap.
Here is an exact copy of what is in the imbibis.cfg
Spoiler

# Configuration file
####################
# block
####################
block {
	I:peripherals.block.id=3414
	I:peripherals.lan-wire.id=464
}

####################
# general
####################
general {
	B:autoAssign=false
	B:enableTPSCommand=true
	#
	S:peripherals.adminPassword=
	B:peripherals.enableAdventureMapInterface=true
	B:peripherals.enableCraftingAcceleratorComponents=true
	B:peripherals.enableCraftingCryptoAccelerator=true
	B:peripherals.enableCraftingLANModem=true
	B:peripherals.enableCraftingLANWire=true
	B:peripherals.enableCraftingMagCardDevice=true
	B:peripherals.enableCraftingMagCards=true
	B:peripherals.enableCraftingRFIDCards=true
	B:peripherals.enableCraftingRFIDReader=true
	B:peripherals.enableCraftingRFIDWriter=true
	B:peripherals.enableCraftingSpeaker=true
	B:peripherals.enableLAN=true
	B:peripherals.enableLANSenderSpoofing=true
	I:peripherals.rfidTicksPerScan=10
}
####################
# item
####################
item {
	I:peripherals.component=28230
	I:peripherals.magstripe=10153
	I:peripherals.rfid=16230
}
Those methods are not from the peripheral, they are in the world and player "objects" you get calling the "getWorld" and "getPlayerByName" methods from the peripheral. So, if you want to get a player's health you need to do this:

local p = peripheral.wrap("right")
local player = p.getPlayerByName(username)
if player then
  print("Player Health: ", player.getHealth())
end
wrothmonk #335
Posted 09 August 2013 - 01:31 PM
Thank you, thats exactly what I needed.
wrothmonk #336
Posted 11 August 2013 - 02:54 PM
I have another question about the adventure peripheral; how do I check if the get closest player command worked or not? I need to check because if nobody is in the area and I try to get a username it comes up with the error attempt to index a nil value.
PixelToast #337
Posted 11 August 2013 - 11:19 PM
I have another question about the adventure peripheral; how do I check if the get closest player command worked or not? I need to check because if nobody is in the area and I try to get a username it comes up with the error attempt to index a nil value.
local a=pcall(player.getUsername)
a will be false if the user dosent exist
MxHn #338
Posted 12 August 2013 - 12:24 PM
Just curious, what does pcall do?
electrodude512 #339
Posted 13 August 2013 - 06:23 PM
pcall on lua manual
MxHn #340
Posted 13 August 2013 - 11:03 PM
Thanks!
Seeker14491 #341
Posted 14 August 2013 - 08:06 PM
I got another crash while setting a large number of blocks repetedly: http://pastebin.com/RUdF7p38. I'm on Minecraft 1.6.2, running the latest core and peripherals, with no additional mods.
MxHn #342
Posted 15 August 2013 - 01:30 PM
Feature requests:
1.add a event to the avmap peripheral to read player deaths(if possible)
2. Add a method to "load" mobs as entity handles
Thanks!
azenet #343
Posted 15 August 2013 - 05:26 PM
About the speaker, would it be possible to add sawtooth and triangle waveforms ? That would be awesome!
MadEngineer #344
Posted 26 August 2013 - 07:09 PM
immibis core 55.0.4 is for minecraft 1.5.1
go get the latest for 1.5.2 (55.0.3) from here:
http://dl.dropboxuse...uilt/index.html

also note, it does not go into coremods
Ok, so I have been working with it for a while, and I still haven't found out why. I tried to find 55.0.3 and it isnt there! I have been using 55.1.6 trying to see if it works (in mods, not coremods) and it still crashes, with slightly dif log:

java.lang.NoClassDefFoundError: net/minecraft/client/entity/EntityClientPlayerMP
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:270)
at cpw.mods.fml.common.ModClassLoader.loadBaseModClass(ModClassLoader.java:86)
at cpw.mods.fml.common.modloader.ModLoaderModContainer.constructMod(ModLoaderModContainer.java:483)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103)
at cpw.mods.fml.common.Loader.loadMods(Loader.java:504)
at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:85)
at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:350)
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:69)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:431)
at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:573)
Caused by: java.lang.ClassNotFoundException: net.minecraft.client.entity.EntityClientPlayerMP
at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:238)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 31 more
Caused by: java.lang.NullPointerException
at cpw.mods.fml.relauncher.RelaunchClassLoader.findClass(RelaunchClassLoader.java:227)
... 33 more

I have, as I said
Immibus Core 55.1.6
Immibus Peripherals 55.0.4

Why is this error happening?
PixelToast #345
Posted 26 August 2013 - 07:23 PM
fulllllllllll fml log please
MadEngineer #346
Posted 26 August 2013 - 09:04 PM
You asked for it :x

http://pastebin.com/H5VuzZtW
Drapheus #347
Posted 29 August 2013 - 07:49 PM
Is there currently any way to read the description of a mag card from the terminal?

For example, a user swipes a mag card and the description is printed on a monitor.

EDIT: Figured it out – next level of noobosity achieved!
Rougeminner #348
Posted 14 September 2013 - 01:13 AM
Can someone point me in the right direction for an encryptor i got the one on the top of the page but is is just a test i can not find an encryptor and decryption program
http://pastebin.com/kztKdG9U
this
if you dont understand it then your probably not ready for an encryption program :P/>

Thanks i have been looking all over sorryfor the late response been offline for a while

Can someone point me in the right direction for an encryptor i got the one on the top of the page but is is just a test i can not find an encryptor and decryption program
http://pastebin.com/kztKdG9U
this
if you dont understand it then your probably not ready for an encryption program :P/>

Thanks i have been looking all over sorryfor the late response been offline for a while

whelp never mind i should have probably read the Pastebin file first but nevermind that i found an AES encryption and it works dont need you :P/> ;)/>
czarisyn #349
Posted 14 September 2013 - 10:02 AM
I keep getting crashes on the server when I add this mod
Here are the logs


---- Minecraft Crash Report ----
// Ouch. That hurt :(/>
Time: 9/14/13 4:51 AM
Description: Exception in server tick loopcpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: mods/immibis/ccperiphs/rfid/TileRFIDReader
at cpw.mods.fml.common.LoadController.transition(LoadController.java:149)
at cpw.mods.fml.common.Loader.loadMods(Loader.java:521)
at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:99)
at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:350)
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:69)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:443)
at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:582)
Caused by: java.lang.NoClassDefFoundError: mods/immibis/ccperiphs/rfid/TileRFIDReader
at mods.immibis.ccperiphs.ImmibisPeripherals.preinit(ImmibisPeripherals.java:138)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:540)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:194)
at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:174)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74)
at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45)
at com.google.common.eventbus.EventBus.dispatch(EventBus.java:313)
at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296)
at com.google.common.eventbus.EventBus.post(EventBus.java:267)
at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:105)
at cpw.mods.fml.common.Loader.loadMods(Loader.java:520)
... 5 more
Caused by: java.lang.ClassNotFoundException: mods.immibis.ccperiphs.rfid.TileRFIDReader
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:179)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 32 more
Caused by: java.lang.NoClassDefFoundError: dan200/computer/api/IPeripheral
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:792)
at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:171)
... 34 more
Caused by: java.lang.ClassNotFoundException: dan200.computer.api.IPeripheral
at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:94)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 38 more

A detailed walkthrough of the error, its code path and all known details is as follows:
----------------------------------------------------------------------------------------- System Details --
Details:
Minecraft Version: 1.6.2
Operating System: Linux (i386) version 3.2.0-53-generic-pae
Java Version: 1.7.0_40, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 928711120 bytes (885 MB) / 1060372480 bytes (1011 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 5 total; -Xms1024M -Xmx1024M -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalPacing -XX:+AggressiveOpts
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP v8.04 FML v6.2.60.859 Minecraft Forge 9.10.1.859 25 mods loaded, 25 mods active
mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized
FML{6.2.60.859} [Forge Mod Loader] (server.jar) Unloaded->Constructed->Pre-initialized
Forge{9.10.1.859} [Minecraft Forge] (server.jar) Unloaded->Constructed->Pre-initialized
Aroma1997Core{1.0.0.4} [Aroma1997Core] (minecraft.jar) Unloaded->Constructed->Pre-initialized
ImmibisMicroblocks{56.0.5} [Immibis's Microblocks] (minecraft.jar) Unloaded->Constructed->Pre-initialized
Aroma1997CoreHelper{1.0.0.4} [Aroma1997Core|Helper] (Aroma1997Core MC.1.6.2 v.1.0.0.4.jar) Unloaded->Constructed->Pre-initialized
IC2{1.118.401-lf} [IndustrialCraft 2] (industrialcraft-2_1.118.401-lf.jar) Unloaded->Constructed->Pre-initialized
CompactWindmills{1.0.2.1} [CompactWindmills] (CompactWindmills+MC.1.6.2+v.1.0.2.1.jar) Unloaded->Constructed->Pre-initialized
ExtrabiomesXL{3.14.1} [ExtrabiomesXL] (ExtrabiomesXL-universal-1.6.2-3.14.1.jar) Unloaded->Constructed->Pre-initialized
LoginMessage{v0.4} [LoginMessage] ([forge_universal]LoginMessage_v0.5.zip) Unloaded->Constructed->Pre-initialized
ImmibisCore{56.0.5} [Immibis Core] (immibis-core-56.0.5.jar) Unloaded->Constructed->Pre-initialized
AdvancedRepulsionSystems{56.0.0} [Advanced Repulsion Systems] (adv-repulsion-systems-56.0.0.jar) Unloaded->Constructed->Pre-initialized
AdvancedMachines{56.0.0} [Advanced Machines] (advanced-machines-56.0.0.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Core{4.0.2} [BuildCraft] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Builders{4.0.2} [BC Builders] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Energy{4.0.2} [BC Energy] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Factory{4.0.2} [BC Factory] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Transport{4.0.2} [BC Transport] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
BuildCraft|Silicon{4.0.2} [BC Silicon] (buildcraft-A-4.0.2.jar) Unloaded->Constructed->Pre-initialized
DimensionalAnchors{56.0.1} [Dimensional Anchors] (dimensional-anchor-56.0.1.jar) Unloaded->Constructed->Pre-initialized
ImmibisPeripherals{56.0.1} [Immibis's Peripherals] (immibis-peripherals-56.0.1.jar) Unloaded->Constructed->Errored
InfiniTubes{56.0.1} [InfiniTubes] (infinitubes-56.0.1.jar) Unloaded->Constructed->Pre-initialized
LiquidXP{56.0.2} [Liquid XP] (liquid-xp-56.0.2.jar) Unloaded->Constructed->Pre-initialized
RedLogic{56.1.1} [RedLogic] (redlogic-56.1.1.jar) Unloaded->Constructed->Pre-initialized
Tubestuff{56.0.3} [Tubestuff] (tubestuff-56.0.3.jar) Unloaded->Constructed->Pre-initialized
Profiler Position: N/A (disabled)
Is Modded: Definitely; Server brand changed to 'fml,forge'
Type: Dedicated Server (map_server.txt)

Any idea's why?
Chamimnya #350
Posted 14 September 2013 - 11:11 PM
I'm getting some glitches with some of your blocks. I'm running MC 1.6.2 and CC 1.56 with your latest build of the peripherals, core, redlogic, &amp; microblocks.
I'm mainly getting invisible spots on certain parts of your objects. Here's what I mean:

http://i39.tinypic.com/2mcho5f.png
http://i40.tinypic.com/2zppcsg.png
http://i40.tinypic.com/13ztmw0.png

And also, I'm getting a glitch with one of your items related to microblocks. It's item.immibis_microblocks.saw.name 13782
http://i44.tinypic.com/25k526r.png

Thanks… hope you can fix these.
Pecacheu #351
Posted 15 September 2013 - 11:44 PM
I'm getting some glitches with some of your blocks. I'm running MC 1.6.2 and CC 1.56 with your latest build of the peripherals, core, redlogic, &amp; microblocks.
I'm mainly getting invisible spots on certain parts of your objects. Here's what I mean:

http://i39.tinypic.com/2mcho5f.png
http://i40.tinypic.com/2zppcsg.png
http://i40.tinypic.com/13ztmw0.png

And also, I'm getting a glitch with one of your items related to microblocks. It's item.immibis_microblocks.saw.name 13782
http://i44.tinypic.com/25k526r.png

Thanks… hope you can fix these.

Iv'e been having texture-problems with the 1.6.2 version as well.
Spoiler
Pecacheu #352
Posted 17 September 2013 - 05:18 PM
psst…
hey, um, you know that post I made a couple months ago here? no?
doesn't surprise me… so, I asked if immibis could add open/close commands to his RFID writer… for no reason in particular…
well, I added the commands myself by modifying TileRFIDWriter.java (newest version).
i'm hoping immibis will consider at least trying it out…
both commands return true on success, false otherwise, and don't work during a write of course…
so here's the link to the modified file: http://www.dropbox.com/s/dxt5d2pkgyxv4cr/TileRFIDWriter.java
And here's the original suggestion: http://www.computercraft.info/forums2/index.php?/topic/3728-mc-162-cc-155pr5-immibiss-peripherals/page__view__findpost__p__104904
oh, and um, this conversation never happened, okay?
cphoenix #353
Posted 17 September 2013 - 11:39 PM
-Removed-
J15t98J #354
Posted 22 September 2013 - 02:01 PM
Please could you add a config option to be able to increase the RFID reader range to enable triangulation in a large room?
frostthejack #355
Posted 23 September 2013 - 02:02 PM
this looks awesome may be looking into adding it to a server i play on
Magi1053 #356
Posted 05 October 2013 - 12:04 PM
How about another os.PullEvent("mag_swipe") entry that returns the card label?
Nbm72 #357
Posted 13 October 2013 - 04:21 PM
-Removed-
azenet #358
Posted 20 October 2013 - 02:01 PM
How does one can get microblocks down using the adventure map interface ? I've tried metadata as the "Part ID" in the tooltip, but that didn't work.
soccermiles #359
Posted 21 October 2013 - 01:58 PM
Awesome peripherals! When you update to the next version, please make sure to remove the LAN cables, since the new CC has its own!
karelmikie3 #360
Posted 26 October 2013 - 02:41 PM
Awesome peripherals! When you update to the next version, please make sure to remove the LAN cables, since the new CC has its own!

but i beleive cc's cables can't go trouch unloaded chunks his can
jag #361
Posted 26 October 2013 - 10:49 PM
Can you make colors with the adventureblocks sendChat function?
jag #362
Posted 27 October 2013 - 04:55 AM
And a way to set not only an entitys position but a way to change their dimension would be great
TyDoesMC #363
Posted 29 October 2013 - 03:02 PM
Hello, Immibis I Found a Bug That Sets Off My OCD, Its With The Adventure Map Interface And The Other Block The Looks Like It, The Front Side Of The Block Is Glitching Out Like Its Not Showing The Panel Of Lights And Buttons Or What Ever They Are, Could This Be Optifine? Or animations Suppost To Be On?? Idk Please Help Ill Reply To This Comment With a Photo.
TyDoesMC #364
Posted 29 October 2013 - 03:12 PM
How about another os.PullEvent("mag_swipe") entry that returns the card label?

event, arg1, arg2, arg3 = os.pullEvent()
if event == "mag_swipe" then
print("Label: "..arg2.." Password: "..arg1.."")
Anavrins #365
Posted 12 November 2013 - 05:49 PM
Am I the only one who sees this?
No Optifine installed.
miyoyo #366
Posted 25 November 2013 - 03:01 PM
Am I the only one who sees this?
No Optifine installed.
Got it too, i think models are broken with 1.6.4 :(/>
distantcam #367
Posted 26 November 2013 - 04:27 AM
Ok this one took me a while to track down, and I thought I was going mad or that the other implementation of SHA256 was wrong (there's at least one other wrong implementation on the forum).

The hash function of the cryptographic accelerator is not formatting the hash output correctly. For each byte if it's less than 15 it's not padding the hex output with a 0. So 0x0b is output as 0xb for example.

This seems to be a common problem with Integer.toHexString(). http://stackoverflow.com/questions/8689526/integer-to-two-digits-hex-in-java
gollark8 #368
Posted 28 November 2013 - 03:32 PM
Will this code work for a door that opens if you have an RFID card with #2367 on it?
Spoilerlocal reader = peripheral.wrap("left")
local combo = #3267
local event,arg1,arg2,arg3 = os.pullEvent()
while true do
reader.scan(5)
if event == "rfid_detected" then
if arg1 == combo then
redstone.setOutput("top", "true")
sleep(3)
redstone.setOutput("top, "false")
end
end
And will this work for making a card?
Spoilerlocal writerSide = "right"
local writer = peripheral.wrap(writerSide)
writer.encode("#3267", "Gollark8 Inc Owner")
end
theoriginalbit #369
Posted 28 November 2013 - 03:34 PM
Will this code work for a door that opens if you have an RFID card with #2367 on it?

local combo = #3267
nope. look at the bit I quoted.
gollark8 #370
Posted 28 November 2013 - 03:36 PM
Will this code work for a door that opens if you have an RFID card with #3267 on it?

local combo = #3267
nope. look at the bit I quoted.
Oops.
Does the rest work?
awsmazinggenius #371
Posted 01 December 2013 - 11:56 AM
I am making a card game program, with multiple games programmed. It will use these awesome mag-cards, a randomized turtle-shuffler and a ton of Redstone. Just a suggestion, can we have the RFID cards read from Turtles' inventories? Or is it a CC limitation that they can only be read in a Player inventory, or that of a Minecart. Also, I have not tried, but can they be read from hopper Minecarts?
TyDoesMC #372
Posted 03 December 2013 - 06:57 PM
Am I the only one who sees this?
No Optifine installed.

No I Have The Same Problem, Its Sending My OCD Out The Roof, So Im Not Using It ATM

I am making a card game program, with multiple games programmed. It will use these awesome mag-cards, a randomized turtle-shuffler and a ton of Redstone. Just a suggestion, can we have the RFID cards read from Turtles' inventories? Or is it a CC limitation that they can only be read in a Player inventory, or that of a Minecart. Also, I have not tried, but can they be read from hopper Minecarts?

It Can, I Think It Still Can Heres a Video Of How I Found Out: http://www.youtube.com/watch?v=ECn3L5hQHGA
TyDoesMC #373
Posted 03 December 2013 - 07:51 PM
Immibis I Know Forge Wont Be Out For Awhile But Please Fix The Bugs Above ^ Please!
I Love This Mod But My OCD Hates The Bugs That Are Above!
immibis #374
Posted 17 December 2013 - 05:59 AM
Really, immibis, you forgot about this thread forever!? I sentence you to one [however long it takes] of fixing bugs!

57.0.1:
  • Fixed missing 0's in cryptographic accelerator hashes.
  • Fixed name of LAN cable.

Rendering is fixed with Immibis Core version 57.1.7. (turns out it was a typo)
Edited on 17 December 2013 - 04:59 AM
gamax92 #375
Posted 12 January 2014 - 10:24 AM
Btw, the thread title still says MC 1.6.2 and CC 1.55pr5, should probably change that to MC 1.6.4 and CC 1.58
immibis #376
Posted 15 January 2014 - 04:53 PM
Fixed.
quique18c #377
Posted 24 January 2014 - 05:26 PM
mag cards are the best!, and u should add a function to RFID cards that with a satelite(new peripheral) u can locate other players that have a RFID card in his inventory, im working on a atm bank system with mag cards, and im trying to make a peripheral to link computercraft and essentials from bukkit
misson20000 #378
Posted 24 January 2014 - 07:50 PM
You should have it so that you can change the volumes for each channel individually on a speaker, and maybe have it so you can upload samples to the speaker and use those instead of a squarewave.
MadEngineer #379
Posted 30 January 2014 - 03:41 PM
First of all, great mod! ;)/> I love every part of it!

I have one comment though about the speakers.. Whenever they are active, everyone around them gets a major lag spike from the animation I imagine.

Next, I have an api request for adventure map interface… Could you make something like p.runCommand("command")? I know you can use command blocks, but it would be a lot easier to do it with the peripheral…

Thanks!
efalder413 #380
Posted 17 February 2014 - 04:36 PM
Remember how Redpower Bundled Cables used to work directly with computers? It'd be really helpful if you added a peripheral here to re-add that functionality with your RedLogic cables.

(I'm aware there is already an addon for that, but it doesn't work with 1.6.4 and the author seems to have dropped off the face of the earth)
immibis #381
Posted 22 February 2014 - 03:49 AM
57.0.2:
  • Fixed microprocessor core recipe (the one where you smelt computers).

Next, I have an api request for adventure map interface… Could you make something like p.runCommand("command")? I know you can use command blocks, but it would be a lot easier to do it with the peripheral…
Remember how Redpower Bundled Cables used to work directly with computers? It'd be really helpful if you added a peripheral here to re-add that functionality with your RedLogic cables.

(I'm aware there is already an addon for that, but it doesn't work with 1.6.4 and the author seems to have dropped off the face of the earth)
You should have it so that you can change the volumes for each channel individually on a speaker, and maybe have it so you can upload samples to the speaker and use those instead of a squarewave.
I am not currently interested in add new features to this mod, since I don't use ComputerCraft very much any more.

There's no reason I won't add those features later, though. It's just not a priority.
adencraft2000 #382
Posted 27 February 2014 - 03:03 AM
To use or not to use… I fail to see the advantage of your LAN system. Care to explain? (Love the cards :)/>)
adencraft2000 #383
Posted 27 February 2014 - 04:12 AM
What system do you use on Dropbox for the pages?
Mordraug #384
Posted 07 March 2014 - 04:47 PM
This is strange, I can't get smelting computers to work in multiplayer. It works as it should in single tho. I have exactly the same configs and mods in server as in single.
drakkillen #385
Posted 22 March 2014 - 11:40 AM
And a way to set not only an entitys position but a way to change their dimension would be great
learn the NBT part of AMI you can set an enteties posision thru the nbt and also the DIM its in thru the nbt
immibis #386
Posted 30 March 2014 - 09:15 AM
57.1.0:
  • Updated to ComputerCraft 1.6.
Mardan #387
Posted 03 April 2014 - 05:49 PM
This addon would be great for shops, I will definitely include it in my modpack, ComputerWorld 3.
Nuczija #388
Posted 09 April 2014 - 08:09 PM
This add-on for ComputerCraft has become a "must-have" for me, I would even delay updating Minecraft itself to have this.

The RFID and Magcards specifically are great, totally changed the way I do some things and gave me a great way to go at my ideas and wants.

Thank you.
LDShadowLord #389
Posted 20 April 2014 - 03:50 PM
Somewhat of a bug report, when you have LAN disabled you can still get the LAN modem out of the creative inventory.
MrabEzreb #390
Posted 11 July 2014 - 08:08 AM
Alright.
1: update to cc 1.6
2: make rfid pocket computers?
3: MAKE RFID IMPLANTS!!!!!!!&amp;
Thanks!
EDIT FOR THING 1: change the title of the post!
Edited on 11 July 2014 - 06:11 AM
Ashton #391
Posted 04 August 2014 - 03:52 AM
Any hope for this being updated for MC 1.7.10? I really hope this mod isn't dead, it was one of my favorites (not to mention *required* for most of the dungeons I designed… T_T)
moomoomoo3O9 #392
Posted 11 August 2014 - 10:25 PM
Has anyone been able to figure out how to take the NBT from another block and copy it to another? Simply changing the coordinates in the NBT and setting the appropriate blocks beforehand then applying it will throw an error saying there is no NBT.

So trying


w.setBlockWithoutNotify(x,y,z,id,meta) --Block type of whatever needs the NBT
NBT["value"]["x"]["value"]=x
NBT["value"]["y"]["value"]=y
NBT["value"]["z"]["value"]=z
writeTileNBT(w.getTileEntity(x,y,z),NBT)

Will just return:

[program name]:87: no NBT loaded (Assuming immibis's NBT API is right at the beginning of the program, so line 87 of his api is erroring)
Edited on 11 August 2014 - 08:31 PM
immibis #393
Posted 26 August 2014 - 04:12 AM
59.0.0:
  • Updated to ComputerCraft 1.64pr4 and Minecraft 1.7.10.
dacmf #394
Posted 03 September 2014 - 12:00 PM
hey :)/>

when placing down an adventure map interface, the server crashes as soon as a player event is triggered.
running with mc 1.7.10 / forge 1206 / cc 1.64pr4 / immibis core 59.0.3 / peripherals 59.0.0

relevant log snippet:
[Server thread/ERROR] [FML/Immibis's Peripherals]: HandshakeCompletionHandler exception
java.lang.IllegalAccessError: tried to access class mods.immibis.ccperiphs.coproc.TileCoprocAdvMap$EventHandler from class cpw.mods.fml.common.eventhandler.ASMEventHandler_636_EventHandler_onPlayerLogin_PlayerLoggedInEvent
at cpw.mods.fml.common.eventhandler.ASMEventHandler_636_EventHandler_onPlayerLogin_PlayerLoggedInEvent.invoke(.dynamic) ~[?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:51) ~[ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:122) ~[EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.firePlayerLoggedIn(FMLCommonHandler.java:549) ~[FMLCommonHandler.class:?]
at net.minecraft.server.management.ServerConfigurationManager.a(ServerConfigurationManager.java:180) ~[oi.class:?]
at cpw.mods.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:173) ~[NetworkDispatcher.class:?]
at cpw.mods.fml.common.network.handshake.NetworkDispatcher.completeHandshake(NetworkDispatcher.java:446) ~[NetworkDispatcher.class:?]
at cpw.mods.fml.common.network.internal.HandshakeCompletionHandler.channelRead0(HandshakeCompletionHandler.java:17) ~[HandshakeCompletionHandler.class:?]
at cpw.mods.fml.common.network.internal.HandshakeCompletionHandler.channelRead0(HandshakeCompletionHandler.java:11) ~[HandshakeCompletionHandler.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:98) ~[SimpleChannelInboundHandler.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:103) [MessageToMessageDecoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) [MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeChannelRead(DefaultChannelHandlerContext.java:337) [DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.fireChannelRead(DefaultChannelHandlerContext.java:323) [DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:785) [DefaultChannelPipeline.class:?]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) [EmbeddedChannel.class:?]
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:77) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212) [ej.class:?]
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165) [nc.class:?]
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659) [MinecraftServer.class:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:335) [lt.class:?]
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427) [MinecraftServer.class:?]
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) [li.class:?]
Ashton #395
Posted 15 September 2014 - 10:19 PM
Can any of the peripherals be connected using redstone or modems? (specifically the AGI and Mag Readers) I'm running up against the PR4 bug that PC's shut down when a chunk is unloaded…
Sariaz #396
Posted 04 October 2014 - 05:15 PM
If your still working on this, I think it would be a nice feature to have the rfid_detected event tell you whether it is detecting a card in a players inventory or a minecart's.
immibis #397
Posted 27 October 2014 - 12:13 AM
59.0.1:
  • Fixed crash when an adventure map interface receives a player event.

Thanks to OpenEye for telling me about this crash, or I would've completely forgotten to check this thread :/
Ashton #398
Posted 07 November 2014 - 06:44 AM
The Adventure Game interface is outright crashing my MC now…

when I place it on my server, server crashes (cant find an explanation of _why_ it crashes unfortunately, probably missed it in the massive wall of text that fires when the server starts/stops)

When I place it on SSP it works fine untill I log out and back in, at that point MC crashes and I get a "ticking memory connection" error — and I have removed ALL mods except Computercraft, Immibiss core and immibris peripherals. (I dont even have to conenct the AGI to a PC, just placing it in the world, logging out and logging in causes MC to crash with the "ticking memory connection" error)
immibis #399
Posted 09 November 2014 - 12:48 AM
59.0.2:
  • Finally fixed microprocessor codes not being craftable in multiplayer.
  • Fixed some (unimportant) warnings from Forge on startup.

The Adventure Game interface is outright crashing my MC now… when I place it on my server, server crashes (cant find an explanation of _why_ it crashes unfortunately, probably missed it in the massive wall of text that fires when the server starts/stops) When I place it on SSP it works fine untill I log out and back in, at that point MC crashes and I get a "ticking memory connection" error — and I have removed ALL mods except Computercraft, Immibiss core and immibris peripherals. (I dont even have to conenct the AGI to a PC, just placing it in the world, logging out and logging in causes MC to crash with the "ticking memory connection" error)
Post the exact error message/crash report.
Ashton #400
Posted 09 November 2014 - 11:14 PM
Post the exact error message/crash report.

Spoiler—- Minecraft Crash Report —-
// Hi. I'm Minecraft, and I'm a crashaholic.

Time: 11/9/14 6:12 PM
Description: Ticking memory connection

java.lang.NullPointerException: Ticking memory connection
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:101)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)
at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:111)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)


A detailed walkthrough of the error, its code path and all known details is as follows:
—————————————————————————————

– Head –
Stacktrace:
at cpw.mods.fml.common.network.internal.FMLProxyPacket.func_148833_a(FMLProxyPacket.java:101)
at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)

– Ticking connection –
Details:
Connection: net.minecraft.network.NetworkManager@243ba865
Stacktrace:
at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:165)
at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:659)
at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:547)
at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:111)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:427)
at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685)

– System Details –
Details:
Minecraft Version: 1.7.10
Operating System: Windows 7 (amd64) version 6.1
Java Version: 1.7.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 101363160 bytes (96 MB) / 259592192 bytes (247 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94
FML: MCP v9.05 FML v7.10.24.1187 Minecraft Forge 10.13.0.1187 6 mods loaded, 6 mods active
mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{7.10.24.1187} [Forge Mod Loader] (forge-1.7.10-10.13.0.1187.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{10.13.0.1187} [Minecraft Forge] (forge-1.7.10-10.13.0.1187.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
ComputerCraft{1.64pr4} [ComputerCraft] (ComputerCraft1.64pr4.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
ImmibisCore{59.0.1} [Immibis Core] (immibis-core-59.0.1.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
ImmibisPeripherals{59.0.0} [Immibis's Peripherals] (immibis-peripherals-59.0.0.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['AshtonDurkhun'/257, l='New World', x=-14.51, y=76.00, z=-11.45]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

As you can see, that's with all other mods removed. If you want to see the server crash log too, I'll post it, but I suspect it's the same issue since it's also caused by the AGI.
DoomRater #401
Posted 21 November 2014 - 05:32 AM
Has anyone tried writing Forth code fast enough to play wave files out of a speaker? That'd be the coolest, even if it's only 3 or 4 bit and like 8k hz. It'd be enough to make out Duke's voice at least!
Rougeminner #402
Posted 02 December 2014 - 07:35 AM
is there any chance this has updated to 1.7.10 yet. this is one of my favorite computercraft peripherals.

I FEEL STUPID INGNORE THIS QUESTION
Edited on 02 December 2014 - 06:36 AM
acces denied #403
Posted 02 December 2014 - 08:49 PM
It is already updated.
Dragon53535 #404
Posted 03 December 2014 - 01:32 AM
I FEEL STUPID INGNORE THIS QUESTION
acces denied #405
Posted 03 December 2014 - 12:48 PM
is there any chance this has updated to 1.7.10 yet. this is one of my favorite computercraft peripherals.

I FEEL STUPID INGNORE THIS QUESTION
#DeletePost #EditPost #Logic

or in Words: Clear and structured post can prevent such mistakes on both sides.
Edited on 04 December 2014 - 12:55 PM
moomoomoo3O9 #406
Posted 17 February 2015 - 01:09 PM
I cannot for the life of me figure out the problem here: Any time I call readTileNBT() or [world].getTileEntity(x,y,z).getKeys(), I get a java exception when doing it on a chest. Am I missing something here?

edit: To clarify the problem, readTileNBT(w.getTileEntity(x,y,z)) where w is the world you're in, and x,y,z are the coordinates of a chest, will simply print out "Java exception thrown" and not work at all.
Edited on 17 February 2015 - 12:10 PM
MarioBrosFTW #407
Posted 22 February 2015 - 11:04 PM
is there a 1.7.10? that actually works as i have tested this with my cauldron server but it crashes it
TheOddByte #408
Posted 23 February 2015 - 07:24 PM
Do you have any other mods installed? Because there may be ID conflicts between them.
And do you have Immibis core installed? Because I believe you need that.
:-) #409
Posted 09 March 2015 - 06:19 PM
Love this mod but…idk really know a lot of lua programming XD
Elsys656 #410
Posted 21 March 2015 - 03:00 AM
Holy crap I wish I had known about this before…Just solved my problems in their entirety.
kd8lvt #411
Posted 21 April 2015 - 04:11 PM
The mag cards plus Krist could end up with a really awesome banking system :o/> I'll have to try this out when I get home!
cokeman5 #412
Posted 24 April 2015 - 04:04 PM
Hello, I'm trying to use the adventure map API and I was wondering how to use the entity methods? I don't know how you get an entity from the world, I don't see a getEntity method or anything similar. Do I need a seperate peripheral to do this?

EDIT: 2nd question, where do I place the nbt.api file so that computercraft can find it?
Edited on 25 April 2015 - 12:44 PM
tSYS #413
Posted 24 May 2015 - 07:25 PM
Hi

There is a bug in the lastest 1.7.10 version (59.0.2) of Immibis's Peripherals for mc 1.7.10 rendering the nbt editing function of the Adventure Map Interface unusable:

[attachment=2291:exception.PNG]

I think a change in net.minecraft.nbt.NBTTagCompound is responsible for the error:

[attachment=2292:nbttagcompound.PNG]

The index of the field containing the key/value map of the NBTTag changed from 0 to 1 but is referenced as index 0 in mods.immibis.ccperiphs.coproc.TileCoprocAdvMap.LuaNBTCompound:

[attachment=2293:cast.PNG]

The cast then fails because index 0 is now the logger, not the map.

Thanks for the great mod!

tSYS
Terra1 #414
Posted 27 May 2015 - 01:14 AM
the RFID card has no benefits
the RFID card needs some sort of advantage against mag stripe cards or else they are completely useless
valithor #415
Posted 31 May 2015 - 09:58 PM
the RFID card has no benefits
the RFID card needs some sort of advantage against mag stripe cards or else they are completely useless
"An RFID card is an item that can hold up to 80 characters of data. If you are holding one anywhere in your inventory, it can be read by any computer with a connected RFID reader within 5 metres."
majix560 #416
Posted 06 June 2015 - 09:15 PM
May I include your mod(s) in my server mod-pack?
Though I am currently only wanting to include Immibis's Peripherals,
I am still in the process of looking for mods for my server
and don't want to exclude your other mods from consideration.
Bomb Bloke #417
Posted 07 June 2015 - 01:40 AM
The "License" section in the first post has something to say about what you can do with the mod.
master39 #418
Posted 09 November 2015 - 09:37 AM
Question: i need to give an already written mag-card in a server as a daily kit (for a sort of old-style minigame arcade-room with tokens on mag-cards) but i don't know how to write the data from the essentials kit set-up, any help?
Edited on 09 November 2015 - 08:37 AM
immibis #419
Posted 20 December 2015 - 12:40 AM
Better late than never, right?

Immibis's Peripherals 59.0.3:
  • Fixed the adventure map interface NBT API throwing Java errors.
TheOddByte #420
Posted 21 December 2015 - 09:26 PM
- snip -
Have you looked into porting this into MC 1.8? I'm pretty sure that CC 1.76 will come out soon, and there's not a lot of peripherals that support it
kyle1elyk #421
Posted 23 December 2015 - 01:18 AM
I'm having trouble getting a script to run, and I don't see an easy way around my problem. I have encrypted data on a mag-card and encryption works fine as well as decrypting, as long as the ciphered text is valid, but if it isn't then the script ends, even when using pcall, the only clue being it prints the word "missing"


--[[Code Above not shown]]
ee = {os.pullEvent()}
	if ee[1] == "mag_swipe" then
	 key = enc.decodeKey("AES", "RAW:GuR/36KtbYk6/uX6r+SDLw==")
	 if pcall(key.decrypt("AES/CBC/PKCS5Padding", ee[2])) and key.decrypt("AES/CBC/PKCS5Padding", ee[2]) =="randomPassword" then
	  redstone.setBundledOutput("bottom",1)
	  code = 13
--[[Code Below not shown]]

any help?


Edit: Thanks Lyqyd for pointing out the dumb mistake. If anyone wants the full code here's the pastebin: HHxutz1L
Edited on 23 December 2015 - 01:57 AM
Lyqyd #422
Posted 23 December 2015 - 01:33 AM
You're using pcall wrong. The first argument should be the function you want to pcall, with subsequent arguments being the arguments to pass to that function. Instead, you're calling the function with its arguments and then passing whatever that function returns to pcall, which is almost certainly not going to be a function value.
kyle1elyk #423
Posted 23 December 2015 - 01:54 AM
You're using pcall wrong. The first argument should be the function you want to pcall, with subsequent arguments being the arguments to pass to that function. Instead, you're calling the function with its arguments and then passing whatever that function returns to pcall, which is almost certainly not going to be a function value.
Alright, thanks. I should of looked into that more instead of posting here.
Chaz #424
Posted 22 January 2016 - 06:36 AM
I only just started giving this addon a proper look, and I absolutely adore the idea of RFID and Mag-Swipe cards - A much more elegant, roleplay-friendly way of making security terminals, compared to the Floppy Disk ID Card system I'd been working on! Almost makes me want to try and make a ComputerCraft-aided adventure/challenge map. Unfortunately I'm having trouble finding much in the way of pre-made modpacks that include this mod, but I'm definitely gonna be playing about with this some more.

Are there any plans to bring Immibis' Peripherals up to 1.8.9/CC 1.78?
immibis #425
Posted 28 March 2016 - 12:46 AM
Are there any plans to bring Immibis' Peripherals up to 1.8.9/CC 1.78?

Why would anyone voluntarily use Minecraft 1.8?

Perhaps the situation is different for servers with a handful of small mods, like ComputerCraft-only servers.
ElvishJerricco #426
Posted 28 March 2016 - 12:51 AM
Are there any plans to bring Immibis' Peripherals up to 1.8.9/CC 1.78?

Why would anyone voluntarily use Minecraft 1.8?

Perhaps the situation is different for servers with a handful of small mods, like ComputerCraft-only servers.

Minecraft 1.8 has come a looooong way since it came out. With developments in Forge, the API has actually come up to par with 1.7. It's quickly becoming the prominent modding version until 1.9 gets all sorted out.
Communeguy #427
Posted 31 March 2016 - 10:50 PM
Just curious - does anyone know if this works with CC 1.74? I know it was written for 1.65, but I wonder how much that could really be broken by. Obviously this isn't SUPPORTED, but still…
Edited on 31 March 2016 - 09:13 PM
Lupus590 #428
Posted 31 March 2016 - 11:40 PM
Just curious - does anyone know if this works with CC 1.74? I know it was written for 1.65, but I wonder how much that could really be broken by. Obviously this isn't SUPPORTED, but still…

Back up your saves and try it, what's the worst that could happen?
Communeguy #429
Posted 31 March 2016 - 11:47 PM
Fair point… Turns out it does, at least for me, if anyone was curious.
immibis #430
Posted 25 April 2016 - 04:26 AM
Are there any plans to bring Immibis' Peripherals up to 1.8.9/CC 1.78?

Why would anyone voluntarily use Minecraft 1.8?

Perhaps the situation is different for servers with a handful of small mods, like ComputerCraft-only servers.

Minecraft 1.8 has come a looooong way since it came out. With developments in Forge, the API has actually come up to par with 1.7. It's quickly becoming the prominent modding version until 1.9 gets all sorted out.
Well, if you're not sticking to 1.7.10, you should be following the latest version, which is currently 1.9. Since ComputerCraft isn't updated to 1.9 yet I can't update this to 1.9.
Edited on 25 April 2016 - 02:26 AM
Lupus590 #431
Posted 25 April 2016 - 10:08 AM
Are there any plans to bring Immibis' Peripherals up to 1.8.9/CC 1.78?

Why would anyone voluntarily use Minecraft 1.8?

Perhaps the situation is different for servers with a handful of small mods, like ComputerCraft-only servers.

Minecraft 1.8 has come a looooong way since it came out. With developments in Forge, the API has actually come up to par with 1.7. It's quickly becoming the prominent modding version until 1.9 gets all sorted out.
Well, if you're not sticking to 1.7.10, you should be following the latest version, which is currently 1.9. Since ComputerCraft isn't updated to 1.9 yet I can't update this to 1.9.

I'm not a mod maker, but from what I've heard, updating to 1.9 from 1.8.9 is a very simple process, but 1.7.10 to 1.8.* is not. With this in mind, you may want to get a head start by updating to 1.8.9

I personally don't update until the mods I want to use have been updated, I've only recently switched to 1.8.9 from 1.7.10 and am still waiting for sum mods.
bluemax9 #432
Posted 12 July 2016 - 01:18 AM
Hello,
I am new to the peripherals mod and also computercraft and was wondering if anyone could help.
I have this code for an rfid card.
Spoilerlocal reader = peripheral.wrap("left")
local combo = "8bitgame"
local event,arg1,arg2,arg3 = os.pullEvent()
while true do
reader.scan(5)
if event == "rfid_detected" then
if arg1 == combo then
redstone.setOutput("bottom", true)
sleep(3)
redstone.setOutput("bottom", false)
end
end
end
I seem to be getting the error "RFID3:5: Already scanning" . I get this error with every code I have used so far from the forums.
Thanks for any help! :)/>
_strx #433
Posted 30 April 2017 - 03:27 PM
Hello! Is it possible for this to be ported to 1.10.2? Would be much appreciated by all.