Java Code Examples for net.runelite.api.Prayer#getDrainRate()
The following examples show how to use
net.runelite.api.Prayer#getDrainRate() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PrayerPlugin.java From plugins with GNU General Public License v3.0 | 5 votes |
private static double getPrayerDrainRate(Client client) { double drainRate = 0.0; for (Prayer prayer : Prayer.values()) { if (client.isPrayerActive(prayer)) { drainRate += prayer.getDrainRate(); } } return drainRate; }
Example 2
Source File: PrayerPlugin.java From runelite with BSD 2-Clause "Simplified" License | 5 votes |
private static double getPrayerDrainRate(Client client) { double drainRate = 0.0; for (Prayer prayer : Prayer.values()) { if (client.isPrayerActive(prayer)) { drainRate += prayer.getDrainRate(); } } return drainRate; }