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 voidonConfigChanged(ConfigChanged configChanged)voidonGameStateChanged(net.runelite.api.events.GameStateChanged event)voidonGameTick(net.runelite.api.events.GameTick event)voidonGraphicsObjectCreated(net.runelite.api.events.GraphicsObjectCreated event)voidonMenuEntryAdded(net.runelite.api.events.MenuEntryAdded event)voidonNpcChanged(net.runelite.api.events.NpcChanged event)voidonNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)voidonNpcSpawned(net.runelite.api.events.NpcSpawned npcSpawned)protected voidshutDown()protected voidstartUp()-
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(net.runelite.api.events.GameStateChanged event)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged configChanged)
-
onMenuEntryAdded
@Subscribe public void onMenuEntryAdded(net.runelite.api.events.MenuEntryAdded event)
-
onNpcSpawned
@Subscribe public void onNpcSpawned(net.runelite.api.events.NpcSpawned npcSpawned)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)
-
onNpcChanged
@Subscribe public void onNpcChanged(net.runelite.api.events.NpcChanged event)
-
onGraphicsObjectCreated
@Subscribe public void onGraphicsObjectCreated(net.runelite.api.events.GraphicsObjectCreated event)
-
onGameTick
@Subscribe public void onGameTick(net.runelite.api.events.GameTick event)
-
-