Help With Horror Mod

Started by VadvMC on

Topic category: Help with modding (Java Edition)

Last seen on 17:54, 23. Aug 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Help With Horror Mod

So I am making new horror mod.

I want to make my entity spawn in radius 60-75 blocks away from the player.

and also i have a question. What are those Event/target entity, source entity, immediate source entity, entity iterator blocks? what they do?

All help will be appreciated

Last seen on 01:24, 4. Sep 2024
Joined Mar 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Event/target entity meaning…
Thu, 08/15/2024 - 15:48

Event/target entity meaning the entity that triggered the procedure.

Source entity meaning the entity that caused the action.

Entity iterator is for for loops.

Just gen a random number between 60-75 and plug it into a variable called dist, generate a random direction between 0 and 360, plugging that into one called angle, and place the entity at x: dist  sin(angle), y: world height at (dist  sin(angle)), z: dist * cos(angle)

Last seen on 17:54, 23. Aug 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
thanks
Thu, 08/15/2024 - 16:09

thanks

Last seen on 17:54, 23. Aug 2024
Joined Aug 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
hi again. i also want to…
Thu, 08/15/2024 - 19:24

hi again. i also want to know how to make the monster spawn in safe places (not in walls) 

how can i make him check blocks around him? cuz he has huge hitbox

tysm