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

  • Author

oops my bad it is .getItem() i am not very good at remembering methods outside my workspace.

 

Edit: add a println to each side of the if statment to see if it is detecting that you are wearing the item.

 

Still can't fly :( here's the code if I've done something incorrect

 

 

@SubscribeEvent

public void onEntityUpdate(PlayerTickEvent event) {

        if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

 

        if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate) {

String ownerName = event.player.getDisplayName();

playersWithFlight.put(event.player, true);

event.player.capabilities.allowFlying = true;

 

} else {

String ownerName = event.player.getDisplayName();

 

if (!playersWithFlight.containsKey(event.player)) {

playersWithFlight.put(event.player, false);

        }

 

if (playersWithFlight.get(event.player)) {

playersWithFlight.put(event.player, false);

 

if (!event.player.capabilities.isCreativeMode) {

event.player.capabilities.allowFlying = false;

event.player.capabilities.isFlying = false;

event.player.sendPlayerAbilities();

}

}

}

}

 

 

  • Replies 59
  • Views 19.5k
  • Created
  • Last Reply

Top Posters In This Topic

That looks ok assuming BetterThings.GravityChestplate is correct.

Add System.out.println("event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate")

 

after

 

if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

 

That should spamm your console with ether true or false and it should change when you equip/unequip the chest plate. If it dosnt print anything then you havent registered the event handler properly.

I am the author of Draconic Evolution

  • Author

That looks ok assuming BetterThings.GravityChestplate is correct.

Add System.out.println("event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate")

 

after

 

if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

 

That should spamm your console with ether true or false and it should change when you equip/unequip the chest plate. If it dosnt print anything then you havent registered the event handler properly.

Didn't get any spam so I must not have registered it correctly.

  • Author

Show how you are registering it.

It should be

FMLCommonHandler.instance().bus().register(new EventHandlerClass());

And it should be in your preinit method

Sorry for the delay, I had to watch a movie with my family, but here is the code.

 

FMLCommonHandler.instance().bus().register(new ArmorEventHandler());

 

Not really sure what I'm supposed to put in that class though.

  • Author

That is where the

@SubscribeEvent

public void onEntityUpdate(PlayerTickEvent event)

method is supposed to be...

Question, How does the GravityArmor class know that the event it is looking for is located in the ArmorEventHandler?

Also, If I don't reply it means I wen't to sleep I have to get up for school in the morning :( But, I'll finish when I get home.

Afaik the way you register eventHandlers is by using

MinecraftForge.EVENT_BUS.register(new EventHandlerClassHere() );

in the preInit or preLoad method.

 

EDIT: Also you should be using @SideOnly(Side.CLIENT) When you're working on the clientside.

--Remember to "Thank you" posts that actually helped you, and if a person seems nice, why not give them an applaud while you're at it--

  • Author

Wow I've been putting it into the wrong class the whole time :P It spams my console like you said it should but it still however doesn't allow me to fly.

  • Author

Afaik the way you register eventHandlers is by using

MinecraftForge.EVENT_BUS.register(new EventHandlerClassHere() );

in the preInit or preLoad method.

 

EDIT: Also you should be using @SideOnly(Side.CLIENT) When you're working on the clientside.

There are two ways of registering event handlers the MinecraftForge event is the 2nd way FMLCommonHandler.instance().bus().register(new ClassName()) is another way.

Afaik the way you register eventHandlers is by using

MinecraftForge.EVENT_BUS.register(new EventHandlerClassHere() );

in the preInit or preLoad method.

 

EDIT: Also you should be using @SideOnly(Side.CLIENT) When you're working on the clientside.

There are two ways of registering event handlers the MinecraftForge event is the 2nd way FMLCommonHandler.instance().bus().register(new ClassName()) is another way.

Thats kinda correct.

There are multiple different event busses

MinecraftForge.EVENT_BUS

and

FMLCommonHandler.instance().bus()

are just 2 of therm and they each handle different events so you need to register your event to the correct buss which in this case is

FMLCommonHandler.instance().bus()

 

And he isnt working on the client side.

 

@OP

Well you are closer atleast try adding

System.out.println("Equipment Stack "+getEquipmentInSlot(3).getItem());
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

 

bellow

if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

and tell me what is printed to the console.

 

 

I am the author of Draconic Evolution

  • Author

Afaik the way you register eventHandlers is by using

MinecraftForge.EVENT_BUS.register(new EventHandlerClassHere() );

in the preInit or preLoad method.

 

EDIT: Also you should be using @SideOnly(Side.CLIENT) When you're working on the clientside.

There are two ways of registering event handlers the MinecraftForge event is the 2nd way FMLCommonHandler.instance().bus().register(new ClassName()) is another way.

Thats kinda correct.

There are multiple different event busses

MinecraftForge.EVENT_BUS

and

FMLCommonHandler.instance().bus()

are just 2 of therm and they each handle different events so you need to register your event to the correct buss which in this case is

FMLCommonHandler.instance().bus()

 

And he isnt working on the client side.

 

@OP

Well you are closer atleast try adding

System.out.println("Equipment Stack "+getEquipmentInSlot(3).getItem());
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

 

bellow

if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

and tell me what is printed to the console.

That caused me to crash :( here's the report.

 

java.lang.NullPointerException: Ticking player

at com.skullcrusher.BetterThings.eventhandlers.ArmorEventHandler.onEntityUpdate(ArmorEventHandler.java:20)

at cpw.mods.fml.common.eventhandler.ASMEventHandler_4_ArmorEventHandler_onEntityUpdate_PlayerTickEvent.invoke(.dynamic)

at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:51)

at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:122)

at cpw.mods.fml.common.FMLCommonHandler.onPlayerPreTick(FMLCommonHandler.java:344)

at net.minecraft.entity.player.EntityPlayer.onUpdate(EntityPlayer.java:274)

at net.minecraft.entity.player.EntityPlayerMP.onUpdateEntity(EntityPlayerMP.java:341)

at net.minecraft.network.NetHandlerPlayServer.processPlayer(NetHandlerPlayServer.java:326)

at net.minecraft.network.play.client.C03PacketPlayer.processPacket(C03PacketPlayer.java:37)

at net.minecraft.network.play.client.C03PacketPlayer$C06PacketPlayerPosLook.processPacket(C03PacketPlayer.java:271)

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:232)

at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182)

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:720)

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:608)

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482)

at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:746)

 

 

  • Author

Afaik the way you register eventHandlers is by using

MinecraftForge.EVENT_BUS.register(new EventHandlerClassHere() );

in the preInit or preLoad method.

 

EDIT: Also you should be using @SideOnly(Side.CLIENT) When you're working on the clientside.

There are two ways of registering event handlers the MinecraftForge event is the 2nd way FMLCommonHandler.instance().bus().register(new ClassName()) is another way.

Thats kinda correct.

There are multiple different event busses

MinecraftForge.EVENT_BUS

and

FMLCommonHandler.instance().bus()

are just 2 of therm and they each handle different events so you need to register your event to the correct buss which in this case is

FMLCommonHandler.instance().bus()

 

And he isnt working on the client side.

 

@OP

Well you are closer atleast try adding

System.out.println("Equipment Stack "+getEquipmentInSlot(3).getItem());
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

 

bellow

if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

and tell me what is printed to the console.

The  System.out.println("Equipment Stack "+getEquipmentInSlot(3).getItem()); is giving me the crash, I had to create a method for +getEquipmentInSlot(3) So I could get the error to go away. Not sure if that's why it crashed or not.

oops remove .getItem() from the first System.out so

System.out.println("Equipment Stack "+getEquipmentInSlot(3));
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

and make sure you are wearing the chestplate it crashed because it tried to get the item from the stack in your chestplate slot but that stack was null.

I am the author of Draconic Evolution

  • Author

oops remove .getItem() from the first System.out so

System.out.println("Equipment Stack "+getEquipmentInSlot(3));
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

and make sure you are wearing the chestplate it crashed because it tried to get the item from the stack in your chestplate slot but that stack was null.

No, it crashed on world load.

  • Author

oops remove .getItem() from the first System.out so

System.out.println("Equipment Stack "+getEquipmentInSlot(3));
if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
System.out.println("Target Item"+BetterThings.GravityChestplate);
if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

and make sure you are wearing the chestplate it crashed because it tried to get the item from the stack in your chestplate slot but that stack was null.

Heres the code for the armor event handler

 

package com.skullcrusher.BetterThings.eventhandlers;

 

import java.util.Map;

import java.util.WeakHashMap;

 

import com.skullcrusher.BetterThings.BetterThings;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.ItemStack;

import cpw.mods.fml.common.eventhandler.SubscribeEvent;

import cpw.mods.fml.common.gameevent.TickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.PlayerTickEvent;

 

public class ArmorEventHandler {

public static Map<EntityPlayer, Boolean> playersWithFlight = new WeakHashMap<EntityPlayer, Boolean>();

 

@SubscribeEvent

public void onEntityUpdate(PlayerTickEvent event) {

        if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;

        System.out.println("Equipment Stack "+getEquipmentInSlot(3).getItem());

        if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());

        System.out.println("Target Item"+BetterThings.GravityChestplate);

        if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

        System.out.println("event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate");

        if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate)

        if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate) {

String ownerName = event.player.getDisplayName();

playersWithFlight.put(event.player, true);

event.player.capabilities.allowFlying = true;

 

} else {

String ownerName = event.player.getDisplayName();

 

if (!playersWithFlight.containsKey(event.player)) {

playersWithFlight.put(event.player, false);

        }

 

if (playersWithFlight.get(event.player)) {

playersWithFlight.put(event.player, false);

 

if (!event.player.capabilities.isCreativeMode) {

event.player.capabilities.allowFlying = false;

event.player.capabilities.isFlying = false;

event.player.sendPlayerAbilities();

}

}

}

}

 

 

}

 

 

Ok thats a bit of a mess... Try this i think i fixed the null pointer and may have figured out why it isnt working.

 

package com.skullcrusher.BetterThings.eventhandlers;

import java.util.Map;
import java.util.WeakHashMap;

import com.skullcrusher.BetterThings.BetterThings;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.TickEvent;
import cpw.mods.fml.common.gameevent.TickEvent.PlayerTickEvent;

public class ArmorEventHandler {
   public static Map<EntityPlayer, Boolean> playersWithFlight = new WeakHashMap<EntityPlayer, Boolean>();

   @SubscribeEvent
   public void onEntityUpdate(PlayerTickEvent event) {
           if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;
         
            System.out.println("Equipment Stack "+event.player.getEquipmentInSlot(3));
           if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
           System.out.println("Target Item "+BetterThings.GravityChestplate);

           System.out.println(event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate);


           if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate) {
         
         playersWithFlight.put(event.player, true);
         event.player.capabilities.allowFlying = true;

      } else {

         if (!playersWithFlight.containsKey(event.player)) {
            playersWithFlight.put(event.player, false);
              }

         if (playersWithFlight.get(event.player)) {
            playersWithFlight.put(event.player, false);

            if (!event.player.capabilities.isCreativeMode) {
               event.player.capabilities.allowFlying = false;
               event.player.capabilities.isFlying = false;
               event.player.sendPlayerAbilities();
            }
         }
      }
   }


}

 

I am the author of Draconic Evolution

  • Author

Oops another typo it should be event.player.getEquipmentInSlot(3) Didnt it give you an error on that line?

Yes, thats what was giving me the error :P fixed the error launching now.

  • Author

Ok thats a bit of a mess... Try this i think i fixed the null pointer and may have figured out why it isnt working.

 

package com.skullcrusher.BetterThings.eventhandlers;

import java.util.Map;
import java.util.WeakHashMap;

import com.skullcrusher.BetterThings.BetterThings;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
import cpw.mods.fml.common.gameevent.TickEvent;
import cpw.mods.fml.common.gameevent.TickEvent.PlayerTickEvent;

public class ArmorEventHandler {
   public static Map<EntityPlayer, Boolean> playersWithFlight = new WeakHashMap<EntityPlayer, Boolean>();

   @SubscribeEvent
   public void onEntityUpdate(PlayerTickEvent event) {
           if (event.phase != TickEvent.Phase.START || event.player.worldObj.isRemote) return;
         
            System.out.println("Equipment Stack "+event.player.getEquipmentInSlot(3));
           if (event.player.getEquipmentInSlot(3) != null) System.out.println("Item "+event.player.getEquipmentInSlot(3).getItem());
           System.out.println("Target Item "+BetterThings.GravityChestplate);

           System.out.println(event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate);


           if (event.player.getEquipmentInSlot(3) != null && event.player.getEquipmentInSlot(3).getItem() == BetterThings.GravityChestplate) {
         
         playersWithFlight.put(event.player, true);
         event.player.capabilities.allowFlying = true;

      } else {

         if (!playersWithFlight.containsKey(event.player)) {
            playersWithFlight.put(event.player, false);
              }

         if (playersWithFlight.get(event.player)) {
            playersWithFlight.put(event.player, false);

            if (!event.player.capabilities.isCreativeMode) {
               event.player.capabilities.allowFlying = false;
               event.player.capabilities.isFlying = false;
               event.player.sendPlayerAbilities();
            }
         }
      }
   }


}

 

Ok it worked as we planned

When it was on:

Equipment Stack 1xitem.GravityChestplate@0

Item com.skullcrusher.BetterThings.Armor.GravityArmor@4aa33ead

Target Item com.skullcrusher.BetterThings.Armor.GravityArmor@4aa33ead

true

When it was off:

Equipment Stack null

Target Item com.skullcrusher.BetterThings.Armor.GravityArmor@4aa33ead

false

 

i think i see the problem can you please show me your moditems class (where you have you instance of GravityChestplate)

 

Edit:wait... i dont see the problem... that should work

I am the author of Draconic Evolution

  • Author

i think i see the problem can you please show me your moditems class (where you have you instance of GravityChestplate)

This is the whole gravity armor class

 

 

package com.skullcrusher.BetterThings.Armor;

 

import java.util.List;

import java.util.Map;

import java.util.WeakHashMap;

 

import net.minecraft.entity.Entity;

import net.minecraft.entity.EntityLivingBase;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.ItemArmor;

import net.minecraft.item.ItemStack;

import net.minecraft.potion.Potion;

import net.minecraft.potion.PotionEffect;

import net.minecraft.util.DamageSource;

import net.minecraft.util.EnumChatFormatting;

import net.minecraft.util.MathHelper;

import net.minecraft.world.World;

import net.minecraftforge.common.ISpecialArmor.ArmorProperties;

 

import com.skullcrusher.BetterThings.BetterThings;

 

import cpw.mods.fml.common.eventhandler.SubscribeEvent;

import cpw.mods.fml.common.gameevent.TickEvent;

import cpw.mods.fml.common.gameevent.TickEvent.PlayerTickEvent;

import cpw.mods.fml.relauncher.Side;

import cpw.mods.fml.relauncher.SideOnly;

 

 

public class GravityArmor extends ItemArmor

{

public GravityArmor(ArmorMaterial armormaterial, int renderID, int partID)

{

super(armormaterial, renderID, partID);

}

 

public String getArmorTexture(ItemStack itemstack, Entity entity, int slot, String layer)

{

if((itemstack.getItem() == BetterThings.GravityChestplate))

{

return "betterthings:textures/models/armor/8_layer_1.png";

}

else return null;

}

 

@SideOnly(Side.CLIENT)

public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean par4)

{

list.add(EnumChatFormatting.DARK_BLUE + "Indestructible");

}

}

 

 

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.