• 0

    posted a message on Custom NPCs

    Is there a way to stack filled soulstones?

    Posted in: Minecraft Mods
  • 0

    posted a message on Xaero's Minimap 1.20 Forge (+ Fabric | 1.19.4 | 1.18.2 | 1.17.1 | 1.16.5 | 1.15.2 | 1.14.4 | 1.12.2 and more)

    Awesome job! I used to use this map all the time in my 1.7 survival. Now it is making a return!

    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    how do I make a npc stand like dead?


    You can put them in the "Lying" position, and tint them red.
    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    Awesome doesn't even begin to describe you, daottoad.

    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    Is there any way to control the stats of NPCs remotely? Like, wiring up a command block to give all NPCs with a certain name strength 1 and health boost 1.

    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    Thanks pyro!

    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs
    Quote from Dancerman181»

    Can you use the options on yourself like the hugging, crawling, and dancing


    I do not believe you can.
    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    Is there any ay to make a NPC explode upon death? I'm planning to make it so that when the boss enemy in my tower defence map dies, it explodes and blows down a wall to the next area.

    Posted in: Minecraft Mods
  • 1

    posted a message on Custom NPCs
    Quote from daottoad»

    This better be for that tower defence game - I want to see it when its done :P
    Put in update tab:

    /*if health drops below 10 RUN!!
    no return to home 
    run away fast speed 7 
    retreat                           */
    if (npc.getHealth() < 10) {
     npc.setReturnToHome(false);
     npc.setWalkingSpeed(7);
     npc.setRetaliateType(2);
     /*else if health returns to normal and return to home is false
    return to home 
    regular speed 5 
     retaliate                                                    */
    } else if (npc.getMaxHealth() ==npc.getHealth() &&  !npc.getReturnToHome()) {
     npc.setReturnToHome(true);
     npc.setWalkingSpeed(5);
     npc.setRetaliateType(0);
    }


    [new years resolution -- more comments in scripts]


    Thank you! The progress is coming along fine.
    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    Is it possible to make an NPC that fights until it's at low health, then runs away?

    Posted in: Minecraft Mods
  • 0

    posted a message on Lapis Satellite Dish
    Quote from KaiemahiVector»

    because murder for green energy is ethical right?

    In all seriousness, Satellite dishes won't make sense unless we actually launch satellites into some kind of blocky orbit. We could try ionospheric reflection but does Minecraft even have an ionosphere?

    Minecraft does have an ionosphere. The troposphere is from y = 0 to y = 255, so 256 x 3 = 768, and 256 x 4 = 1024, so the ionosphere goes from y = 768 to y = 1024.
    Posted in: Suggestions
  • 0

    posted a message on Lapis Satellite Dish
    Quote from SnailsAttack1»

    Yes I should pull out my mad coding skills that don't exist and go... do this...

    Anyways, I don't think having it eat redstone dust would be a very good idea. It would make it very unethical to use.

    Why unethical? You could just make a witch burner and get infinite redstone like that.
    Posted in: Suggestions
  • 0

    posted a message on Lapis Satellite Dish

    Maybe instead of having a range limitation, have it consume redstone while in use? Connect a hopper and a chest to it, and it will eat redstone dust, with no signal limit.


    Other than that, fantastic idea. You should make a mod for this! :D

    Posted in: Suggestions
  • 0

    posted a message on Custom NPCs

    Could someone please tell me how to add music to the bard's playlist?

    Posted in: Minecraft Mods
  • 0

    posted a message on Custom NPCs

    How do I add custom music to the game? I looked at many tutorials, but none of them worked.

    Posted in: Minecraft Mods
  • To post a comment, please .