Java Code Examples for net.runelite.api.Prayer#values()
The following examples show how to use
net.runelite.api.Prayer#values() .
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: BarbarianAssaultPlugin.java From plugins with GNU General Public License v3.0 | 5 votes |
private boolean isAnyPrayerActive() { for (Prayer pray : Prayer.values()) { if (client.isPrayerActive(pray)) { return true; } } return false; }
Example 2
Source File: PrayerPlugin.java From plugins with GNU General Public License v3.0 | 5 votes |
private boolean isAnyPrayerActive() { for (Prayer pray : Prayer.values())//Check if any prayers are active { if (client.isPrayerActive(pray)) { return true; } } return false; }
Example 3
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 4
Source File: PrayerPlugin.java From runelite with BSD 2-Clause "Simplified" License | 5 votes |
private boolean isAnyPrayerActive() { for (Prayer pray : Prayer.values())//Check if any prayers are active { if (client.isPrayerActive(pray)) { return true; } } return false; }
Example 5
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; }
Example 6
Source File: AutoPrayFlickPlugin.java From ExternalPlugins with GNU General Public License v3.0 | 4 votes |
@Subscribe public void onGameTick(GameTick event) { if (config.onlyInNmz() && !isInNightmareZone()) { return; } Widget widget = client.getWidget(WidgetInfo.MINIMAP_QUICK_PRAYER_ORB); if (widget != null) { bounds = widget.getBounds(); } if (toggleFlick && config.clicks()) { int p = 0; for (Prayer prayer : Prayer.values()) { if (!client.isPrayerActive(prayer)) { p++; } } if (p == 29 && !firstFlick) { singleClick(); return; } doubleClick(); if (firstFlick) { firstFlick = false; } } if (toggleFlick && !config.clicks()) { singleClick(); } }