Class SpecialCounterPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.specialcounter.SpecialCounterPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Special Attack Counter", description="Track special attacks used on NPCs", tags={"combat","npcs","overlay"}, enabledByDefault=false) public class SpecialCounterPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description SpecialCounterPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonCommandExecuted(net.runelite.api.events.CommandExecuted commandExecuted)voidonFakeXpDrop(net.runelite.api.events.FakeXpDrop event)voidonGameStateChanged(net.runelite.api.events.GameStateChanged event)voidonGameTick(net.runelite.api.events.GameTick event)voidonHitsplatApplied(net.runelite.api.events.HitsplatApplied hitsplatApplied)voidonNpcChanged(net.runelite.api.events.NpcChanged npcChanged)voidonNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)voidonScriptPostFired(net.runelite.api.events.ScriptPostFired event)voidonSpecialCounterUpdate(SpecialCounterUpdate event)voidonStatChanged(net.runelite.api.events.StatChanged event)voidonVarbitChanged(net.runelite.api.events.VarbitChanged event)protected voidshutDown()protected voidstartUp()-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
onScriptPostFired
@Subscribe public void onScriptPostFired(net.runelite.api.events.ScriptPostFired event)
-
onFakeXpDrop
@Subscribe public void onFakeXpDrop(net.runelite.api.events.FakeXpDrop event)
-
onStatChanged
@Subscribe public void onStatChanged(net.runelite.api.events.StatChanged event)
-
onGameTick
@Subscribe public void onGameTick(net.runelite.api.events.GameTick event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
onVarbitChanged
@Subscribe public void onVarbitChanged(net.runelite.api.events.VarbitChanged event)
-
onHitsplatApplied
@Subscribe public void onHitsplatApplied(net.runelite.api.events.HitsplatApplied hitsplatApplied)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(net.runelite.api.events.NpcDespawned npcDespawned)
-
onNpcChanged
@Subscribe public void onNpcChanged(net.runelite.api.events.NpcChanged npcChanged)
-
onSpecialCounterUpdate
@Subscribe public void onSpecialCounterUpdate(SpecialCounterUpdate event)
-
onCommandExecuted
@Subscribe public void onCommandExecuted(net.runelite.api.events.CommandExecuted commandExecuted)
-
-