My minecraft is crashing with custom code

Started by RodizzGamer on

Topic category: Advanced modding

Active 4 years ago
Joined May 2018
Points:
691

User statistics:

  • Modifications: 0
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
My minecraft is crashing with custom code
Tue, 11/24/2020 - 08:57 (edited)

I am making that when the player clicks the button send a message to the chat but the games crashes

 

here is the function 

@SubscribeEvent
public static void playerTick(TickEvent.PlayerTickEvent event) {
    if (RegistryHandler.keys[0].isPressed() && RegistryHandler.keysStates[0] == false) {
        ExampleMod.LOGGER.info("NINJA CARD");
        ((ServerPlayerEntity)event.player).func_241151_a_(new TranslationTextComponent("NinjaCard"), ChatType.CHAT, Util.field_240973_b_);
        RegistryHandler.keysStates[0] = true;
    }
    else if(RegistryHandler.keys[0].isPressed()) {
        RegistryHandler.keysStates[0] = false;
    }
}
Edited by RodizzGamer on Tue, 11/24/2020 - 08:57
This seems like custom code…
Wed, 10/21/2020 - 19:25

This seems like custom code. Learn how to code if you want to use custom code.

Active 4 years ago
Joined May 2018
Points:
691

User statistics:

  • Modifications: 0
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
ok   
Thu, 10/22/2020 - 08:01

ok 

 

Active 4 years ago
Joined May 2018
Points:
691

User statistics:

  • Modifications: 0
  • Forum topics: 3
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 2
What i do to not crash the…
Thu, 10/22/2020 - 08:25

What i do to not crash the game 

 

Active 2 days ago
Joined May 2019
Points:
1208

User statistics:

  • Modifications: 0
  • Forum topics: 13
  • Wiki pages: 2
  • MCreator plugins: 1
  • Comments: 844
Learn how to code if you…
Thu, 10/22/2020 - 12:40

Learn how to code if you want to use custom code.