Search results

  1. E

    Solved Several bugs and problem with Infinity 1.7 server

    The Death.attack.Chaos appears to originate from DraconicEvolution. I'm not entirely sure what's causing him to be taking damage like that though. https://github.com/brandon3055/Draconic-Evolution/blob/master/src/main/java/com/brandon3055/draconicevolution/common/utills/DamageSourceChaos.java
  2. E

    Whitelist Server 1.7.10 Steincraft | Direwolf20 1.6.1 | Whitelist | 32 Slots | 24/7 |Plugins| Family Friendly | TS3

    1.) IGN: EvilShallWin 2.) Age: (optional) 23 3.) How long have you been playing Minecraft? About 2 or 3 years. (since before 1.0) 4.) Why do you want to join our server? I want to play on a modded server that has an active community where the admins actually listen to the players.
  3. E

    Feeding Hungry Nodes

    How the heck do you bottle a hungry node properly? I know you can try to equal trade an obsidian outside with glass, but it seems like the node will always suck up a glass block before you can bottle it.
  4. E

    King Slime mob?

    I was wondering if any of you had an idea on how best to spawn an initial King Slime mob. (I plan to net it and spawn multiple of them for lots of experience - yes I know there are better ways but I just like this one). If anyone has found a reliable way to spawn a king slime, please post it here.
  5. E

    Strangest FTB Server Problem

    Go to the AM2 configs and disable Hecates. IIRC there's a bug with them where they will not despawn properly. Set their spawnRate to 0. Also, if you have Openblocks installed, add hecates to the additional section in the config like so: additional { # List any mob names you want disabled on...
  6. E

    Clever applications for Computercraft turtles and computers?

    I used a turtle to automate wand refilling when I'm out of my base. Basically, it uses an ender chest linked to an ender pouch, which I put the wand in. The turtle pulls out the wand and puts it in the recharge station. Every 2 minutes or so it checks if the wand has reached a certain threshold...
  7. E

    Using the Castle Defenders Mod with Monster

    Every player needs it client-side, yes. As for difficulty of implementation, it doesn't seem like the kind of mod that would conflict too much, but I can't say for certain. It should be testable in SSP, try adding it to the modpack and firing up an SSP world to see if anything crashes/conflicts.
  8. E

    Blood N Bones Shader

    Except... shader mods don't affect gameplay at all. That disclaimer is specifically for adding mods like Gregtech, IC2, Mekanism, or whatever, since they do add new items. Shader mods are like adding a texture pack. They don't affect how the game is played at all, just how it looks...
  9. E

    Turtle Activated with Redstone HELP!!!

    Your program checks only once if a redstone signal is applied and if it is, runs until the redstone signal is turned off. As soon as there is no redstone signal your while loop ends and your program is complete. Do this instead: while true do if redstone.getInput("right") == true do...
  10. E

    What's a teleportation structure/device that can allow me to transport my huge underwater base?

    How are you guys even comparing enabling a feature of one mod to enabling an entire mod? There are plenty of things in Blood Magic that might not play well with servers, like certain rituals that might break progression of other mods. Spatial storage is an already implemented part of AE and is...
  11. E

    Minetweaker Help - Mod support

    Duration must be an int is referring to the time variable, which you set to 200... That IS an int (an int is just an integer). Try setting it to something else like 100 or 120 and seeing if that works. If not can you post the full crash log/error log?
  12. E

    zans minimap crashing when makeing a waypoin

    Posting the crash log in a spoiler would -probably- be helpful, as well as actually using the correct section.
  13. E

    Creation of "Lost Research Guide for Thaumcraft 4.1"

    Do NOT shift click the research note out of the crafting table, instead left click and drag it. Shift clicking it out is known to cause this issue. What I'm saying is that you get the Primal Charm and hold it in your hand to unlock the Wand Focus: Primal research. You then scan a Wand Focus...
  14. E

    Creation of "Lost Research Guide for Thaumcraft 4.1"

    Scanning a primal focus gets you the research for a primal staff/wand core (can't remember which).
  15. E

    Ask a simple question, get a simple answer

    The ethereal blooms WILL convert the biome back to its original state - it's only the purenode silverwoods that convert it to magical forest.
  16. E

    Ask a simple question, get a simple answer

    False, the modifiers like pure, sinister, tainted, etc are separate from the brightness modifer. The former will stay constant no matter how many times you bottle it up while the brightness modifer (the normal -> pale and so on will only go down to fading which is the lowest possible level of...
  17. E

    Ask a simple question, get a simple answer

    What's the best way to feed multiple lamps of growth? I need a lot of herba essentia to do so and I'm stuck on figuring out what items are best to burn to do so.
  18. E

    How can I store mana beans in a way that a turtle can get it?

    If you mean the Transvector interface, I didn't think it worked properly with the ironchests mod. If it does I'll make sure to look into that. The issue is that the transfer nodes begin to connect to the deployer/breaker if I use one to place it down and all the items get dumped into that...
  19. E

    How can I store mana beans in a way that a turtle can get it?

    My turtle pulls out one of each of the mana beans to check what aspects it has then puts it in the chest, unfortunately, if there's a transfer node + rationing pipe connected to the chest, it adds an extra one to make it 64 before the turtle puts the one it took out from the chest back. So in...
  20. E

    How can I store mana beans in a way that a turtle can get it?

    That's somewhat close to what I need, but the issue with the transfer nodes is that I have 51 of them connected to 51 barrels all feeding to a single chest. It would be very difficult to disabled each and every one of the transfer nodes, though if that's the only way I'll be able to manage (will...