Jump to content

Recommended Posts

Posted

I made a trident that lets you walk on water when holding it, but everytime I put it in my hotbar my game crashes. This is my code:

package com.kuikenpower.falidsmp.init.item;

import net.minecraft.client.player.LocalPlayer;
import net.minecraft.core.BlockPos;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;

@OnlyIn(Dist.CLIENT)
public class TridentItem extends Item {

	public TridentItem(Properties arg0) {
		super(arg0);
		// TODO Auto-generated constructor stub
	}
	
    @Override
    public void inventoryTick(ItemStack p_41404_, Level world, Entity entity, int p_41407_, boolean p_41408_) {
        LocalPlayer player = (LocalPlayer)entity;
        if(player.getMainHandItem().getItem() instanceof TridentItem) {
			BlockPos pos = player.getOnPos();
			Block blockClicked = world.getBlockState(pos).getBlock();
        	if(blockClicked == Blocks.WATER) {
        	player.setDeltaMovement(player.getDeltaMovement().multiply(1.05, 0, 1.05));
        	if(player.input.jumping) {
        		player.setDeltaMovement(player.getDeltaMovement().add(0, 1, 0));
        	}
        }
    }
    }
}

 

Posted
2 hours ago, Kuikenpower said:

When using just Player, I can't use .input. How would I be able to not have LocalPlayer but still use .input?

you can not, key input is client side this is why it's only accessible in LocalPlayer,

but the most stuff is server side and will be synced to the client

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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