Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

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));
        	}
        }
    }
    }
}

 

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...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.