Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Microcellule

Microcellule

Members
 View Profile  See their activity
  • Content Count

    21
  • Joined

    March 5, 2014
  • Last visited

    20 hours ago

Community Reputation

0 Neutral

About Microcellule

  • Rank
    Tree Puncher

Converted

  • Gender
    Undisclosed
  • Personal Text
    Hi there !

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Microcellule

    [1.15.2] Check if a sound is played

    Microcellule replied to Microcellule's topic in Modder Support

    AAAAAh ! Okay ! I will look at this right away ! Thank you very much !
    • November 16, 2020
    • 2 replies
  2. Microcellule

    [1.15.2] Check if a sound is played

    Microcellule posted a topic in Modder Support

    Hi Guys ! I'm trying to do some stuff but it seem it doesn't work. I just want to check if a sound is played to prevent the game to play it twice. So... i was telling me there is two ways to do it : 1. put a timer and when it is below zero, the block can play it again when the player go trough it. 2. second option maybe safer, only play it again when the previous sound is over and the player go trough the block. I tried to check the second option that in a method but... it seem that Soundhandler.isPlaying(Isound) doesn't work.... Or maybe i'm missing something very obvious. Be gentle with me, i'm auto learning Java haha ;) private void playSound(IBlockReader world, BlockPos pos, Entity entity) { if(timer <=0) { SoundEvent sound = InitSound.PASSAGE_TOUR.get(); System.out.println("before doing it ? " +Minecraft.getInstance().getSoundHandler().isPlaying( SimpleSound.music(sound))); //((World) world).playSound((PlayerEntity)entity, pos,sound, SoundCategory.BLOCKS, 1F, 1F); entity.playSound(sound, 1.0F, 1.0F); System.out.println("the sound is played ? " +Minecraft.getInstance().getSoundHandler().isPlaying( SimpleSound.music(sound))); timer=30; } } the two output say in the consol that they are false... both. Thank you for reading this and Thank you even more if you help me with this ;)
    • November 15, 2020
    • 2 replies
  3. Microcellule

    [1.12] Airless Dimension

    Microcellule replied to Spaceboy Ross's topic in Modder Support

    Try to make an event that chek if the payer has the complete suit on them. If not they are hurted by a new custom damagesource :"out of air" or something like that I did something similar with my radioactive ore.
    • September 14, 2019
    • 3 replies
  4. Microcellule started following [1.12.2]Animation Block June 7, 2018
  5. Microcellule

    [1.12.2]Animation Block

    Microcellule posted a topic in Modder Support

    Hey guys ! I'm trying to make an animated Block (opened and closed block). I don't know how to start it because forge documentation didn't help me to figure out how to do this. But i already did that : trough Propertybool and with Blockstate JSON, i made different model of the block. If i change a boolean in my block class, my block is turning closed or opened peferctly the way i want. Only the problem is that... well... if I try to change it in game, the change didn't take place. I have to restart the map (leave and directly go back in) to see the change. SetBlockState didn't make anything change If someone has a tutorial to show me, don't hésitate ? Here my Block (i think you can see i'm still a beginner with all this line of code. Yup i can agree. I will learn how to do better later :p... And at least it works :p)
    • June 7, 2018
  6. Microcellule started following [1.7.10] Change player model (and skin/texture), [Forge 1.8] Animation Player and Forge[1.7.10] Particle Problem June 7, 2018
  7. Microcellule

    [Forge 1.8] Animation Player

    Microcellule replied to Microcellule's topic in Modder Support

    Ok I believe you i will try this Thank you
    • July 18, 2015
    • 6 replies
  8. Microcellule

    [Forge 1.8] Animation Player

    Microcellule replied to Microcellule's topic in Modder Support

    Sure ? because in the changeLog of forge, it seems to be not functional Maybe I don't understand the meaning of the sentence (because my first language is french )
    • July 18, 2015
    • 6 replies
  9. Microcellule

    [Forge 1.8] Animation Player

    Microcellule replied to Microcellule's topic in Modder Support

    I totally forgot that ! Thanks you, I will try to figure if there is a way to do this Edit: Apparently... RenderPlayerEvent is not Fired.... I use Forge version 11.14.3.1450
    • July 15, 2015
    • 6 replies
  10. Microcellule

    [Forge 1.8] Animation Player

    Microcellule posted a topic in Modder Support

    Hi everyone ! I would like to know if there is a way to animate the Entityplayer . In my mod, i wish to animate the arm and the 3D model of the player while he is using some capacity. The first one is "meditate" , so I would like to know if there is a way to modify the modelPlayer. The "normal riding position" is not very great for me, i just want to add a new posture. If I can change/Replace the renderPlayer, I think I can add animation too. It would be great for the others spells (Spiritual Shield, Fire ball,...etc). I saw on the Internet that the "RENDERPLAYER API" should be great for this... But... I don't know How to use it/install it. Sorry if the question was already asked, if you want you can just give me a link who is in relation with my problem Anyway, I thank you beforehand for your answer.
    • July 15, 2015
    • 6 replies
  11. Microcellule

    Forge[1.7.10] Particle Problem

    Microcellule replied to Microcellule's topic in Modder Support

    No idea ?
    • January 13, 2015
    • 1 reply
  12. Microcellule

    Forge[1.7.10] Particle Problem

    Microcellule posted a topic in Modder Support

    Hi there ! I have un unexpected problem with my particles ... i let you see what kind of problem is (click on the image to see the gif) http://s24.postimg.org/5fwzwjcoh/Bug_particle.jpg[/img] Here is my code for the particules. I don't know what the problem is and i Follow this tut0 to see how it works : I don't understand why my particles don't stay 3 blocks on top of the head of the player ! Is so strange, and even if i do nothing in the method OnUpdate(), particles are going away anyway. Modify the gravity doesn't change anything too. Thanks for your futur answer
    • January 12, 2015
    • 1 reply
  13. Microcellule

    [1.7.10] Change player model (and skin/texture)

    Microcellule replied to Androm's topic in Modder Support

    Ow, that's sad Well maybe forge will do something about that later .... I hope Anyway,thanks for the answer .
    • December 3, 2014
    • 20 replies
  14. Microcellule

    [1.7.10] Change player model (and skin/texture)

    Microcellule replied to Androm's topic in Modder Support

    Sorry to disturb you guys, i'm following your discussion since three days ago. I have One question: Is this method to modify the model is nice if you want your mod compatible with others mod who modify the modelPlayer too ? (hope that you understand what i mean )
    • December 3, 2014
    • 20 replies
  15. Microcellule

    [1.7.10]ModelPlayer:add new move.

    Microcellule replied to Microcellule's topic in Modder Support

    Aaaaaw ok ok I thought that, yes , i should certainly use an Api... but i don't how to mod with these.. thing (exept forge of course ) I will look at this, but i would like to do this without an other Api... But thanks for your answer, it's very friendly to have some good advice !
    • November 22, 2014
    • 5 replies
  16. Microcellule

    [1.7.10]ModelPlayer:add new move.

    Microcellule replied to Microcellule's topic in Modder Support

    I forgot to ask you, it is possible, when i'm trying rendering with this event, having a compatibility with other mod who customize the modelPlayer too ?
    • November 21, 2014
    • 5 replies
  17. Microcellule

    [1.7.10]ModelPlayer:add new move.

    Microcellule replied to Microcellule's topic in Modder Support

    Thanks for your fast answer ! I will try on my own to do something like you said, and make a new model. I already use IExtendedEntityProperties to store some useful informations, so no worries about that Cric craaaaack ! Let's go ! ps: Thanks a lot
    • November 20, 2014
    • 5 replies
  • All Activity
  • Home
  • Microcellule
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community