skyfir3
Members-
Posts
53 -
Joined
-
Last visited
Everything posted by skyfir3
-
How do i add the recipes from custom furnaces and machines to the "not enough items" mod?
-
I tested if the lava sound in minecraft stops when starting playing the sound, and it does not
-
When my block is active it makes a sound, everything works except when I destroy the block, it still plays the sound file (.ogg) until finished.
-
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Solved! (edited) -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
I did some testing and it did heal, but only sometimes. When I movingobjectposition.entityHit.setFire, I was buring sometimes when I launched the entity. Guess this entity hits me first -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Seems that sometimes when i shoot the entity, I get hit instead of what I aim at -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Instead of healing I do entity.setDead I also downloaded the damage indicators mod. Testing on zombies(although they are not "living") I would clearly know if it works -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Both calling a method And simply just Does not heal a living entity -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
I do not simply copy and paste codes, I learn from them. If you want me to learn, show me how to call this code -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
I have worked hours with this mod and everything works except those two things. I really do not want to read my 400 page java book just to call this code Yeah I need to look over my guis and see if have done something wrong with my proxies I only need help with this healing projectile entity -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
There is no crash log, but i take the advice -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
I tried this but did not work -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
This and that my mod is crashing in multiplayer are the only things i need to know to make my mod finally finished. I do not have the time to learn java just to call this code. Could you just show how please? -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Could i get more help? How would i write that code? -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Not even close, there are no methods that heals in that class -
[SOLVED][1.8] Shootable entity that heals living entities
skyfir3 replied to skyfir3's topic in Modder Support
Thought that this would work Sadly it didn't -
So i want to make an shootable entity like f. eks. the EntityArrow, but i want the entity to heal an living entity onImpact
-
Thank you so much! The solution was right in front of meh, but i put the if(player.isInvisible()) the wrong place.
-
The armor is now invisible, but it is invisible even when i'm not invisible I need to make it so it only runs through the getModelArmor when i'm invisible, but i thought that this would do the trick But it looks like it runs through the getArmorModel even without this
-
[SOLVED][1.8] Multiple achievements triggering one
skyfir3 replied to skyfir3's topic in Modder Support
Oh i forgot, i have to use if(!worldIn.isRemote) Now it works, thank you! -
[SOLVED][1.8] Multiple achievements triggering one
skyfir3 replied to skyfir3's topic in Modder Support
so i use @SideOnly(Side.SERVER)? -
[SOLVED][1.8] Multiple achievements triggering one
skyfir3 replied to skyfir3's topic in Modder Support
I have been programming minecraft for a long time but i still have bad java programming knowledge. Could you show more spesific how and where to use the player.statsFile.hasAchievement? -
[SOLVED][1.8] Multiple achievements triggering one
skyfir3 replied to skyfir3's topic in Modder Support
Where is the best place for this method to be fired? -
[SOLVED][1.8] Multiple achievements triggering one
skyfir3 replied to skyfir3's topic in Modder Support
They are all my achievements. I can't find statsFile or hasAchievementUnlocked in EntityPlayer.class, is this a method for other version? -
So i made a achievement that should be triggered when multiple achievements is reached. I have no clue how i would do this, help?