
opssemnik
Members-
Posts
269 -
Joined
-
Last visited
Everything posted by opssemnik
-
Stack OverFlow its thing that its on infinite loop, have you tried update your forge to see if this problems still persists?
-
[Solved] Limiting what goes in inventory slots
opssemnik replied to defiant810's topic in Modder Support
oh thanks kore (its annoying why the dedicated server must return false to the world.isRemote, mojang fails). -
[Solved] Limiting what goes in inventory slots
opssemnik replied to defiant810's topic in Modder Support
if(world.isRemote){ EntityItem entity = new EntityItem(this.getWorldObj(), this.xCoord + rx, this.yCoord + ry, this.zCoord + rz, new ItemStack(contents.itemID, contents.stackSize, contents.getItemDamage())); } -
take a look https://github.com/opssemnik/FunModVannila/tree/master/cliente/animacoes'>https://github.com/opssemnik/FunModVannila/tree/master/cliente/animacoes https://github.com/opssemnik/FunModVannila/blob/master/cliente/proxy/clproxy.java'>https://github.com/opssemnik/FunModVannila/blob/master/cliente/proxy/clproxy.java https://github.com/opssemnik/FunModVannila IN THE SECOND LINE TAKE A LOOK AT THIS TextureFXManager.instance().addAnimation(new TextureFunFX("/FunMod/cliente/texturas/animacoes/QuestionBlock.png", FunMod.ANIMATED_TEXTURE_INDEX)); The FunMod.ANIMATED_TEXTURE_INDEX its the texture that you want to be animated in your main texture files, in the case in my FunModBlocks.png i want to the texture in the second square to be animated so that ANIMATED_TEXTURE_INDEX its "1" (int not string)
-
that "3" its the number of diamond armor render so it will not conflict with other mods, also nice mod.
-
why u just use "3" instead of proxy.addArmor and then in your armor item file u just use public String getArmorTextureFile() ?
-
GameRegistry.registerTileEntity(TileEntityKoriumMiniChest.class, "containerKoriumMiniChest"); ' ' ' public class TileEntityExpBank something wrong huh?
-
its because in you main mod file you should use (for all types of tile entities )
-
lol? my jar files i just create with eclipse, then i reobfuscate the mod and override the files inside the jar, am i the only that do this?
-
ITickHandler will help, take a look at there, also there are IScheduledTickHandler
-
Also there are some terrain gen events, take a look at there too, but i dont know if works with nether, do some tests.
-
for me to do this you must use
-
sorry instead of if (par5Entity.ridingEntity == null && par5Entity.riddenByEntity == null && par5Entity instanceof EntityPlayerMP) { its
-
what? your portal block class its wrong i dont see any OBS: The DIMNESIONID you need to CHANGE to YOUR DIMENSION ID
-
hi i have made a dimension, everthing works but if in my biome i put one of my blocks as topBlock or fillerBlock i get Crash Crash : ChunkProviderBacon: Biome : Can somewone help me? } Fixed !
-
i didn´t tried yet, but if not work u casn use asm.
-
put in your main mod file, EnumHelper.addGameType(args here).
-
-snip- sorry
-
Look at EntityRegistry there is a remove spawn function, then u create the new entity file using vannila model and render.
-
Help about liquids (Noob in need of assistance!!!)
opssemnik replied to DarklingGX's topic in General Discussion
so if u are a java learner take a look at buildcraft code on github, that may help you. -
your code is right but instead of using WOlrdGenMinable u must create another WorldGenMinableEnd but changind the minable block from stone to end stone.
-
How can I make a "on wear" event listener?
opssemnik replied to mighty2361's topic in Modder Support
create a tick handler server side, and them just do a check to see if the player have equipped that armor, if haves u give the potion effects if not just do nothing -
Help about liquids (Noob in need of assistance!!!)
opssemnik replied to DarklingGX's topic in General Discussion
take a look at net.minecraftforge.liquids at common package