LogoLogo
  • Introduction
  • Documentation License
  • Modding Basics
  • Getting Started
  • Configuration
    • Creating a Config
    • Config Options
      • Boolean Configs
      • Number Configs
      • Selector Configs
      • Text Configs
      • Buttons, Colors and Keybinds
      • Decorative Components
      • Custom options
    • Migration
  • Events
    • Event Basics
    • Available Events
      • ChatReceiveEvent
      • TickEvent
      • InitializationEvent
      • HudRenderEvent
      • Packet Events
      • LocrawEvent
  • Graphics & UI
    • Render Manager
      • Font Rendering
    • Elements
    • Pages
  • Commands
    • Commands
    • An Example Command
  • HUDs
    • HUD Basics
  • Utilities
    • OneConfig's Utilities
      • Notifications
      • HypixelUtils
    • OneColor
    • OneUIScreen
Powered by GitBook
On this page

Was this helpful?

  1. Events
  2. Available Events

TickEvent

Learn more about the TickEvent

TickEvent is an event that is fired twice Minecraft tick - once at the start, and once at the end. Minecraft ticks happen once every 50ms, or 20 times per second.

You can specify when you want this to be fired using Stage, like this:

@Subscribe
public void onTick(TickEvent event) {
    if(event.stage == Stage.START) {
        // do something at the start of the tick
    }
    if(event.stage == Stage.END) {
        // do something at the end of the tick.
    }
}

If the Stage of the event is not checked, your code may run twice. Be careful!

PreviousChatReceiveEventNextInitializationEvent

Last updated 2 years ago

Was this helpful?