Skip to content

GamebP/MinecraftForgeUtils

Repository files navigation

MinecraftForgeUtils

Easier way to find what does field and method mean in obfuscated minecraft mod code. Latest builds seen here.

Pictures

image image image

  • From java obfucated class to real answers
protected void func_110147_ax() {
        super.func_110147_ax();
        this.func_110148_a(SharedMonsterAttributes.field_111263_d).func_111128_a(0.30000001192092896);
        this.func_110148_a(SharedMonsterAttributes.field_111267_a).func_111128_a(10.0);
    }
  • To
protected void applyEntityAttributes() {
        super.applyEntityAttributes();
        this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(0.30000001192092896);
        this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(10.0);
    }

Building

  • Debug
  • x64

About

1.7.10

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages