GameTick

Beginner

net.runelite.api.events

Fired every game tick (0.6 seconds). This is the most common event for plugins that need to run continuously.

Category
Events
Methods
1
Properties
1

Methods (1)

Properties (1)

Event Type

GameTick

GameTick is an event class - it doesn't have properties, but fires every game tick

java
1// GameTick events are simple - they just fire periodically
2@Subscribe
3public void onGameTick(GameTick event) {
4    // Your code here runs every game tick
5}

Related Classes

Plugins Using This Class