Jump to content

Xoroshio

Members
  • Posts

    82
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Xoroshio

  1. You could store your variant as a plain string, then implement IEntityAdditionalSpawnData, and write and read your string to the client there. Then just read and write your string inside read/addAdditionalSaveData
  2. Listen for LivingDeath event, and if the entity is a player, cancel the event and set the players health to at least 0.5f
  3. You can use either a ticking block entity or override tick in your block class. When the block ticks, check if there is a player on it and if there is, light it up, else de light it
  4. Can I see all of your armour code?
  5. im trying to create a player border command, but whenever i try to use /playerborder set ~ ~ ~10 ~10 or any other Vec2 arguments, this error will show : "Unknown or incomplete command, see below for error" here is some of my code : public PlayerBorderCommand(CommandDispatcher<CommandSourceStack> dispatcher) { dispatcher.register(Commands.literal("playerborder").requires(x->x.hasPermission(2)) .then(Commands.literal("set") .then(Commands.argument("min", Vec2Argument.vec2()) .then(Commands.argument("max", Vec2Argument.vec2()) .executes(this::setBorder)))) .then(Commands.literal("add") .then(Commands.argument("player", MessageArgument.message()) .executes(this::addPlayer))) .then(Commands.literal("remove") .then(Commands.argument("player", MessageArgument.message()) .executes(this::removePlayer)))); }
  6. ok, i solved it by using a FlatLevelSource chunk generator and having no layers. i also called setDecoration();
  7. Hi there, how do i remove the default generation? My biome generates very default things such as caves, dirt, water, and grass. How do I make it only generate features? For example, the biome would be void with some floating custom features.
  8. Instead of extending TieredItem, try and extend SwordItem
  9. Xoroshio

    .

    Where are you calling createAttributes() ? you may have to do this: @Mod.EventBusSubscriber(modid = MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD) public class ModEventBusEvents { @SubscribeEvent public static void registerAttributes(EntityAttributeCreationEvent event) { event.put(ModEntityType.AFRAID_BOSS.get(), AfraidBoss.createAttributes().build()); } }
  10. Try Mob.getNavigation().moveTo(x,y,z,1);
  11. I’m not sure why your first problem is being a problem, it’s code should work. Can I see your ModItems class? There might be a problem there. Your second issue, two effects on one material, is because you are trying to modify an immutable map before it is built. The way your code works is the each armour material is mapped to ONE armour effect. Is you want multiple effects for each material, you will have to modify the map so that it maps armour materials to a list of effects. You will also have to modify the effect applying code to work with lists if effects.
  12. You could try and manage custom armour features from inside armourTick. You would need to create a custom item called, for example, SapphireChestplateItem. It would extend ModAmrorItem. Your code might look like this: @Override public void onArmorTick(){ super.onArmorTick(); //your code here } If onArmorTick is to slow for you, you can listen for server ticks and loop through the servers players and if the current one if wearing your armor, do whatever you want. btw this is only is you want the result of the effect, not like a full blown armour independent effect, e.g night vision
  13. Hi, I have tried to make biome tags for custom biomes, however when the ModBiomeTagProvider runs, it throws an error saying: “could not create tag tagname because it is missing the following references: biomename”. I used the normal way you register tags, extending ForgeBiomeTagProvider. Thank you in advance.
  14. There is a problem with net/mcreator/stonks/gui/AlloyFurnaceGUIGui$GuiWindow mcreator is probably the culprit
  15. The player doesn’t have a respawn point because you haven’t used a bed or respawn anchor or something. When the players respawn point is null and the player wants to respawn, the server calculates when the player should respawn. If getRespawnPosition is null, get the world spawn from the ServerLevel
  16. I can’t see what the problem is since there seem to be no errors. Are you sure that was everything? The last log seems to be about the graphics library. Maybe that is the issue. [20:26:39] [main/INFO]: Incorrect key [earlyWindowSkipGLVersions] was corrected from null to [] …… [20:26:41] [main/INFO]: Trying GL version 4.6 looks sus, but it might not be the issue
  17. setDeltaMovement only works on the client. this makes the animations smoother. The reason sendSystemMessage works is because you don’t have to constantly send messages from the server to the client, and a little bit of lag is ok. This is a core minecraft mechanism, but you can send custom packets over to the client to set its deltaMovement. The client has to have a way to receive the packets too.
  18. Try and replace () -> new Item(Item.properties….. in ModItems with () -> new HoneyBottleItem(Item.properties……
  19. Thanks so much, do you have any launcher suggestions or is Prism Launcher the go to launcher?
  20. Hi, the microphone mod is not working on my Mac. It says “launcher does not support MacOS microphone permissions” Thank you in advance for answering.
  21. Make sure you have Optifine installed as a mod. Go into Options > Video Settings > Shaders > and then click the shader you want Make sure the shader.zip files are in the shaderpacks folder inside the minecraft folder
  22. you probably need to give it more RAM
  23. Try and uninstall both and get Java 17
  24. You might need to have a custom model for the block too.
  25. What jar files are you trying to open and why are you trying to open them?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.