Jump to content

I have a friend who wants to make a mod that places blocks beneath your feet


Recommended Posts

Posted

I have a friend who wants to make a mod that places blocks beneath your feet but his code has errors. I do not know how to help him since i am new to 1.15.2 modding so I am coming to the forums asking for help.

 

 

 

His Code:

 

Locate class:

import net.minecraft.block.Block;

import net.minecraft.block.BlockState;

import net.minecraft.block.Blocks;

import net.minecraft.block.material.Material;

import net.minecraft.client.Minecraft;

import net.minecraft.entity.LivingEntity;

import net.minecraft.fluid.IFluidState;

import net.minecraft.util.math.BlockPos;

import net.minecraft.entity.Entity;

import net.minecraft.entity.player.*;

import net.minecraft.item.Item;

import net.minecraft.world.World;

import net.minecraftforge.fml.RegistryObject;

import net.minecraftforge.registries.DeferredRegister;

import net.minecraftforge.registries.ForgeRegistries;

 

public class Locate {

   public void isAirBelow(BlockPos pos)

   {

       EntityPlayer player = event.player;

       BlockPos posBelow = player.getPosition().down();

       BlockState blockStateBelow = player.world.getBlockState(posBelow);

       Block below = blockStateBelow.getBlock();

 

       if(below.equals(Material.AIR)) {

           world.setBlock(blockStateBelow, Blocks.COBBLESTONE);

       }

   }

}

 

main class:

 

import java.util.stream.Collectors;

 

// The value here should match an entry in the META-INF/mods.toml file

@Mod("Scaffold")

public class Scaffold

{

   // Directly reference a log4j logger.

   private static final Logger LOGGER = LogManager.getLogger();

 

   public Scaffold() {

       // Register the setup method for modloading

       FMLJavaModLoadingContext.get().getModEventBus().addListener(this::setup);

       FMLJavaModLoadingContext.get().getModEventBus().addListener(this::doClientStuff);

 

       // Register ourselves for server and other game events we are interested in

       MinecraftForge.EVENT_BUS.register(this);

   }

 

   private void setup(final FMLCommonSetupEvent event)

   {

       // some preinit code

       LOGGER.info("HELLO FROM PREINIT");

       LOGGER.info("DIRT BLOCK >> {}", Blocks.DIRT.getRegistryName());

   }

 

   private void doClientStuff(final FMLClientSetupEvent event) {

       // do something that can only be done on the client

       LOGGER.info("Got game settings {}", event.getMinecraftSupplier().get().gameSettings);

   }

}

 

Posted
11 minutes ago, 20ChenM said:

public void isAirBelow(BlockPos pos)

   {

       EntityPlayer player = event.player;

There is no event parameter. Also, please tell your friend to open a thread post of his own so we do not need to go through a middleman.

 

Setting a block beneath the player's feet would probably need to be handled in a PlayerTickEvent. However, doing this probably isn't a good idea as it will cause a bunch of lag and make it impossible to go down.

Posted
15 hours ago, ChampionAsh5357 said:

There is no event parameter. Also, please tell your friend to open a thread post of his own so we do not need to go through a middleman.

 

Setting a block beneath the player's feet would probably need to be handled in a PlayerTickEvent. However, doing this probably isn't a good idea as it will cause a bunch of lag and make it impossible to go down.

More like that method (and that class!) are never referenced anywhere else.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)

You can do this by the Event: LivingEntity.LivingJumpEvent

Example:

@SubscribeEvent
public static void onJump(LivingEvent.LivingJumpEvent event) {
    LivingEntity player = event.getEntityLiving();
    World world = player.getEntityWorld();
    world.setBlockState(player.getPosition().add(0, 0, 0), YOUR_BLOCK.get().getDefaultState());
}

and it has to be in a class where you make your Events.

For this put this just above your class:

@Mod.EventBusSubscriber(modid = your_mod_id, bus = Mod.EventBusSubscriber.Bus.FORGE, value = Dist.CLIENT)

 

EDIT:if you want to have cobblestone replace YOUR_BLOCK with Blocks.COBBLESTONE

           and your_mod_ id with "Scaffold"

Edited by Davidthemodder
Posted

Or with the LivingTickEvent:

@SubscribeEvent
public static void onJump(TickEvent.PlayerTickEvent event){
    if (event.player.world.getBlockState(event.player.getPosition().add(0, -1, 0)) == Blocks.AIR.getDefaultState()){
        event.player.world.setBlockState(event.player.getPosition().add(0, -1, 0), Blocks.COBBLESTONE.getDefaultState());
    }
}
Posted
19 hours ago, 20ChenM said:

@Mod("Scaffold")

Mod id can not be capitalized.

 

3 hours ago, Davidthemodder said:

 


@SubscribeEvent
public static void onJump(LivingEvent.LivingJumpEvent event) {
    LivingEntity player = event.getEntityLiving();
    World world = player.getEntityWorld();
    world.setBlockState(player.getPosition().add(0, 0, 0), YOUR_BLOCK.get().getDefaultState());
}

LivingJumpEvent is triggered whenever a living entity jump, and that includes livings like sheep, chickens, zombies..etc.

3 hours ago, Davidthemodder said:

 


@Mod.EventBusSubscriber(modid = your_mod_id, bus = Mod.EventBusSubscriber.Bus.FORGE, value = Dist.CLIENT)

the default bus of annotation @Mod.EventBusSubscriber is forge already, and it should not be done only on client side.

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • joptsimple.UnrecognizedOptionException: X is not a recognized option JVM-Arguments begin with a - So use -Xmx6G instead of Xmx6G etc
    • https://pastebin.com/SnWukPj8   thats the crash log if anyone can help add me on discord: privatelk
    • Remove Neruina and justleveling from your server
    • I'm attempting to make a 1.20.1-47.4.0 forge server but when I change the user_jvm_args.txt it does nothing so i tried adding it to the run.bat which it picks up on the startup console but then gives me this [21:56:01] [main/ERROR] [minecraft/Main]: Failed to start the minecraft server joptsimple.UnrecognizedOptionException: X is not a recognized option     at joptsimple.OptionException.unrecognizedOption(OptionException.java:108) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at joptsimple.OptionParser.validateOptionCharacters(OptionParser.java:633) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at joptsimple.OptionParser.handleShortOptionCluster(OptionParser.java:528) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at joptsimple.OptionParser.handleShortOptionToken(OptionParser.java:523) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at joptsimple.OptionParserState$2.handleArgument(OptionParserState.java:59) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at joptsimple.OptionParser.parse(OptionParser.java:396) ~[jopt-simple-5.0.4.jar%2393!/:?] {}     at net.minecraft.server.Main.main(Main.java:98) ~[server-1.20.1-20230612.114412-srg.jar%23101!/:?] {re:classloading}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.4.0.jar%2369!/:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.4.0.jar%2369!/:?] {}     at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.4.0.jar%2369!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} I have uninstalled and reinstalled all my versions of java and tried deleting and restarting everything several times to no avail. I have no more ideas and would appreciate any assistance.
  • Topics

×
×
  • Create New...

Important Information

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