Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. C

    Moderators: They make you lose count(Longest thread still alive!)

    242 Hold the line! The no-topic thread is approaching!
  2. C

    Moderators: They make you lose count(Longest thread still alive!)

    44 So Hoff, how's it feel knowing this thread will be overtaken soon?
  3. C

    Bedrock...

    Yep, Hardness = 10:
  4. C

    Bedrock...

    It probably should be a float, but I generally don't care and stick an int there anyway.
  5. C

    Bedrock...

    How's Java? try{ Field fi = null; for(Field f : Block.class.getDeclaredFields()) { if(f.getName().equals("bedrock")) { fi = f; } } Object o = fi.get(DGlass); //DGlass being an object of Block type Block bedrock = (Block) o; //Casting o to a block so you can screw with its fields...
  6. C

    Bedrock...

    TO THE TUTORIALS/APIS OF COURSE! :D (specifically the classes and members sections of those tutorials, and most likely the .set(Obj o, Obj value) method of the field class, I think) EDIT: You might also want to get the Field first, and use .setAccessible(true) on it, if necessary. EDIT2...