Class ZalcanoPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.zalcano.ZalcanoPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Zalcano", description="Assistance for the Zalcano fight", enabledByDefault=false) public class ZalcanoPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description ZalcanoPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getHealthDamage()
List<net.runelite.api.GraphicsObject>
getRocks()
int
getShieldDamage()
net.runelite.api.coords.LocalPoint
getTargetedGlowingRock()
int
getTargetedGlowingRockEndCycle()
boolean
isInCavern()
void
onGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)
void
onGameStateChanged(net.runelite.api.events.GameStateChanged event)
void
onGraphicsObjectCreated(net.runelite.api.events.GraphicsObjectCreated graphicsObjectCreated)
void
onHitsplatApplied(net.runelite.api.events.HitsplatApplied event)
void
onNpcChanged(net.runelite.api.events.NpcChanged event)
void
onNpcDespawned(net.runelite.api.events.NpcDespawned event)
void
onNpcSpawned(net.runelite.api.events.NpcSpawned event)
void
onProjectileMoved(net.runelite.api.events.ProjectileMoved event)
void
onVarbitChanged(net.runelite.api.events.VarbitChanged event)
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, getInjector, getName, resetConfiguration
-
-
-
-
Method Detail
-
onGraphicsObjectCreated
@Subscribe public void onGraphicsObjectCreated(net.runelite.api.events.GraphicsObjectCreated graphicsObjectCreated)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
onVarbitChanged
@Subscribe public void onVarbitChanged(net.runelite.api.events.VarbitChanged event)
-
onNpcSpawned
@Subscribe public void onNpcSpawned(net.runelite.api.events.NpcSpawned event)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(net.runelite.api.events.NpcDespawned event)
-
onGameObjectSpawned
@Subscribe public void onGameObjectSpawned(net.runelite.api.events.GameObjectSpawned event)
-
onNpcChanged
@Subscribe public void onNpcChanged(net.runelite.api.events.NpcChanged event)
-
onProjectileMoved
@Subscribe public void onProjectileMoved(net.runelite.api.events.ProjectileMoved event)
-
onHitsplatApplied
@Subscribe public void onHitsplatApplied(net.runelite.api.events.HitsplatApplied event)
-
getTargetedGlowingRock
public net.runelite.api.coords.LocalPoint getTargetedGlowingRock()
-
getTargetedGlowingRockEndCycle
public int getTargetedGlowingRockEndCycle()
-
getRocks
public List<net.runelite.api.GraphicsObject> getRocks()
-
getHealthDamage
public int getHealthDamage()
-
getShieldDamage
public int getShieldDamage()
-
isInCavern
public boolean isInCavern()
-
-