Recent content by Kocyk

  1. K

    [PROGRAM] Thaumcraft Pathfinder

    Code looks fine from what i've seen. The only reason i can think of is that Versions list is empty when you populate combobox, so it looks like it's not working, but no idea why making separate method would fix that. Do you know how to do basic debugging in VS? Place a breakpoint in...
  2. K

    [PROGRAM] Thaumcraft Pathfinder

    Can you link your code somehow?
  3. K

    [PROGRAM] Thaumcraft Pathfinder

    You can make sure the names are capitalized by using something like this in you textbox "Leave" event: String temp = textBoxName.Text.ToLower().Substring(1); textBoxName.Text = textBoxName.Text.Substring(0, 1).ToUpper() + temp; And this in "Text changed" event makes sure user can only enter...
  4. K

    [1.7.10][WIP] Lord British's Legacy

    The only difference is that you're making 2 checks instead of 1. It's not a problem, just "less efficient" ;).
  5. K

    [1.7.10][WIP] Lord British's Legacy

    Umm... regeneration duration is expressed in ticks, so your effect will last 1/4s. It probably applies, just goes away before you notice. BTW isn't calling world.isRemote == false kinda redundant? You could just use:!world.isRemote
  6. K

    Applied Energistics 2 Power options.

    For small networks i often make efford to use Radioisotope Generators from IC2 experimental. But only beacuase i rarely bother setting up consistent power networks and instead generate it when i need it.
  7. K

    How did you learn to mod / code Java?

    http://courses.vswe.se/
  8. K

    Wicked Fast Tree Farm Design (ideas)

    I use it as a primary source of wood. Breed sequoia tree with faster maturation. 5-10 stacks of wood from every tree. Only problem is that forestry farms convert vanilla trees into forestry versions. And that means tons of butterflies spawning.
  9. K

    ELORAAM

    Most visuals will cause FPS drops only, since they are client-side. But when you need to constantly update the state of the machine for the visuals to work properly it generates more network movement.
  10. K

    ELORAAM

    FTFY Honestly, there's a place for everything. And blutricity had no complicated uses in RP2. There was no need to worry about numbers outside of MJ engine. I'd really like to see her use the potential of her power net. I'm fine with complicated.
  11. K

    Ender Tanks turning into chests.

    I think it happened to me once sometime, but i have no idea in what circumstances. Code wise Ender Chests and Tanks share the same ID, but with different metadata. So if something happens to reset metadata of a tank to 0 it would probably turn into a chest. Or something.
  12. K

    Modjam 4 Discussion Thread and Reviews

    I wish i had time to finish my entry for Modjam to any satysfying degree. If you guys make it work it would be so great for flavor/RP servers. I'll personally vote for: Modular Chests Electromagnetic Coherence RPGModAdv Elemental Caves and Fancy Clocks beacuase it looks like something pulled...
  13. K

    AE2 Discussion

    For those complaining about meteors : you are aware that it's not true you get only single press from a meteor? You often get 2-3 different ones, so it's not as bad as some try to make it look. At least in my case i got on average 2 unique plates from each meteors. I don't say it won't be...
  14. K

    What is the best method to craft unstable ingots at the moment ???

    I just found total of 10 uncrafting tables in 4 hollow hills (tables, not maze focus). They seem actually quite common in chests there.
  15. K

    What do you Think is the Best/Most Useful Item/Block/Multi-Block Structure in FTB

    Woodworker from Extra Trees. Amount of possibilities for aesthetic builds is glorious.