
xXxKanemanxXx
Members-
Posts
65 -
Joined
-
Last visited
Everything posted by xXxKanemanxXx
-
[1.7.2] How to Create a Set Armor ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
bump up the jam -
Could it be that the Crash is caused by this line in the Tool Class ? this.setCreativeTab(getCreativeTab().tabTools); i recommend to use this.setCreativeTabs(CreativeTabs.tabTools);
-
[1.7.2] How to Create a Set Armor ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
So the OnArmorTick in the Armor Class is not necessary or what ? -
Hello Guys I have a Question for you. How can i create a Set Armor like in a RPG which gives u when wearing 2 Items an Enchantment like DigSpeed, when u wear 3 Items it gives u Movement Speed and on 4 Items it adds Absorbtion. I've tried this but it didn't worked... The Armor Class: armorEnch Class: The armorEnch Class is used for the setEnch in the Armor Class... I've tried it this way but it did not work... I seek for help
-
[1.7.2]Making an Item lose durability while Crafting :o
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
really ? thats awesome thx for ur advice -
[1.7.2]Making an Item lose durability while Crafting :o
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
okay diesieben07, so i've added the hasContainerItem method. I think now i need a crafting handler or ? -
[1.7.2]Making an Item lose durability while Crafting :o
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
why the recipe ? -
Try to call the onEaten function in ur Sandwich class.
-
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
diesieben07 what is badores.firstjoin supposed to do ? Because i have a problem with my OnJoin Event. I'm adding the Written Book to my Inventory on joining a world. But it gets added everytime i join a world. I want it so that when i rejoin the world i won't get a new book only on joining the first time -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
i have just talked about the chaos ugliness what ugliness did u meant ? -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
Only the genius masters it's own chaos -
david he uses it in the same class so MODID is enough
-
in my opinion it's easier to have the setTexture etc in the specific Item or Block class Item Example: public ApprenticeMystStone(){ super(); this.setUnlocalizedName("apprenticemystStone"); this.setTextureName(text); } private String text = mystcrops.MODID + ":apprenticemystStone"; Block Example: private String texture = "CrystalRevolution:crystal_ore"; public OreCrystal(Material mat) { super(mat); this.setBlockName("OreCrystal"); this.setBlockTextureName(texture); } i'm using it like this because it's easier. Hope this helped u
-
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
And is just ugly. maybe it's ugly but if it helps and if it works who cares ? -
[1.7.2] How to create a Book with custom GUI ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
That is something i want to read. Something that gives me the courage to learn Java And i got it already not with a custom gui but with NBT -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
If its okay i would prefer to send u a pm with my Code because the thingy with the onitemrightclick Method does not work atm and i have to go to bed now ^^ -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
But i could create a New Class for this Book couldn't i ? I want to make this Book craftable and have this Informations stored in it. When i use the onitemrightclick Method it wont open the gui that a written book should have -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
So u mean i could use ur Code for learning NBT thingy things and paste it in for example my Main class and then create a new Item that extends the created ItemStack Book ? -
[1.7.2] How to create a Book with custom GUI ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
I want an easy way on creating a book with i think it's called NBT thingy. So that when i open the Book it has the Crafting Guide of an Item and a little Text for every Item -
[1.7.2] How to create a Book with custom GUI ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
I thought this is a Modder Support not a read the code and do it on your own thingy... I would honor it if i could get some useful help... i know that i have to learn how to decipher java code... but i would really apreciate it when u help me -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
Could u post ur Code ? -
[1.7.2] How to create a Book with custom GUI ?
xXxKanemanxXx replied to xXxKanemanxXx's topic in Modder Support
I want to know how this works but there is no clue for me to understand the code of mdyo. -
Custom informational book using NBT 1.7.2
xXxKanemanxXx replied to Potato Coded's topic in Modder Support
Thats exactly what i'am looking for but i want to have a custom gui like Mdyo or Mikeemoo did with images of the crafting recipes etc