Jump to content

ismaeel96

Members
  • Posts

    5
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

ismaeel96's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. ok, so to cancel is event.RenderPlayerEvent(true); . but then how would i render the player?
  2. OMG THANKS sorry for too many questions, but do u happen to know any event that i can use to change background color?
  3. ok so i read up on event handling and (from what i read) i cant edit or override (am i missing somthing?) the "func_96449_a" method in the "RendererLivingEntity" class for example if i edit "func_96449_a" i can make the player nametag green instead of white. in mcp 903 (mc version 1.7.2) i edit the class and was able to run and everything (within eclipse), but it wasnt recompiling or reobfuscating. now i am using forge and want to edit or override that method (preferably from my mod class, i kind of dont want it to be a "coremod"), how do i do that?
  4. i have to use event handler right? you know any good tutorials? and do i use it to call my class instead?
  5. hi, im trying to make a mod, i used to be able to just edit the classes but now we cant edit the classes in the new forge gradle. i want to know how to replace a mc class with my own class and if we cant do that i want to know how to override a method in a different class? i either have to override a whole bunch of methods or edit the class and replace the original with my own here is how i was trying to override methods package com.example.examplemod; (all imports that i need) @Mod(modid = ExampleMod.MODID, version = ExampleMod.VERSION) @SideOnly(Side.CLIENT) public class ExampleMod extends RendererLivingEntity { public static final String MODID = "examplemod"; public static final String VERSION = "1.0"; public ExampleMod(ModelBase p_i1261_1_, float p_i1261_2_) { super(p_i1261_1_, p_i1261_2_); // TODO Auto-generated constructor stub } @Override protected void renderModel(EntityLivingBase p_77036_1_, float p_77036_2_, float p_77036_3_, float p_77036_4_, float p_77036_5_, float p_77036_6_, float p_77036_7_) { ... } // eclipse tells me to add this unimplemented method @Override protected ResourceLocation getEntityTexture(Entity p_110775_1_) { // TODO Auto-generated method stub return null; } } my question is: how do i go about replaceing a whole class with my own or how to override a method that is in a mc class? when i run eclipse MC doesnt run, i get this VVV
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.