Class NpcIndicatorsPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.npchighlight.NpcIndicatorsPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="NPC Indicators", description="Highlight NPCs on-screen and/or on the minimap", tags={"highlight","minimap","npcs","overlay","respawn","tags"}) public class NpcIndicatorsPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description NpcIndicatorsPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onConfigChanged(ConfigChanged configChanged)
void
onGameStateChanged(GameStateChanged event)
void
onGameTick(GameTick event)
void
onGraphicsObjectCreated(GraphicsObjectCreated event)
void
onMenuEntryAdded(MenuEntryAdded event)
void
onNpcChanged(NpcChanged event)
void
onNpcDespawned(NpcDespawned npcDespawned)
void
onNpcSpawned(NpcSpawned npcSpawned)
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
startUp
protected void startUp() throws Exception
-
shutDown
protected void shutDown() throws Exception
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged event)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged configChanged)
-
onMenuEntryAdded
@Subscribe public void onMenuEntryAdded(MenuEntryAdded event)
-
onNpcSpawned
@Subscribe public void onNpcSpawned(NpcSpawned npcSpawned)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(NpcDespawned npcDespawned)
-
onNpcChanged
@Subscribe public void onNpcChanged(NpcChanged event)
-
onGraphicsObjectCreated
@Subscribe public void onGraphicsObjectCreated(GraphicsObjectCreated event)
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
-