Class RegenMeterPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.regenmeter.RegenMeterPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Regeneration Meter", description="Track and show the hitpoints and special attack regeneration timers", tags={"combat","health","hitpoints","special","attack","overlay","notifications"}) public class RegenMeterPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description RegenMeterPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getHitpointsPercentage()
double
getSpecialPercentage()
void
onGameTick(GameTick event)
void
onItemContainerChanged(ItemContainerChanged event)
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
-
onItemContainerChanged
@Subscribe public void onItemContainerChanged(ItemContainerChanged event)
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
getHitpointsPercentage
public double getHitpointsPercentage()
-
getSpecialPercentage
public double getSpecialPercentage()
-
-