Updat plugins Types and Defaulted them off (#489)
Updated Plugin Types and Default All Off
This commit is contained in:
@@ -56,8 +56,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Alchemical Hydra",
|
||||
description = "Show what to pray against hydra",
|
||||
tags = {"Hydra", "Lazy", "4 headed asshole"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class HydraPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -47,6 +47,7 @@ import net.runelite.client.util.HotkeyListener;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class AntiDragPlugin extends Plugin
|
||||
{
|
||||
private static final int DEFAULT_DELAY = 5;
|
||||
|
||||
@@ -63,7 +63,8 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "AoE Warnings",
|
||||
description = "Shows the final destination for AoE Attack projectiles",
|
||||
tags = {"bosses", "combat", "pve", "overlay"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
@@ -60,12 +60,14 @@ import okhttp3.Request;
|
||||
import okhttp3.Response;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Ban List",
|
||||
description = "Displays warning in chat when you join a" +
|
||||
"clan chat/new member join your clan chat and he is in a WDR/RuneWatch/Manual List",
|
||||
tags = {"PVM", "WDR", "RuneWatch"},
|
||||
type = PluginType.UTILITY
|
||||
name = "Ban List",
|
||||
description = "Displays warning in chat when you join a" +
|
||||
"clan chat/new member join your clan chat and he is in a WDR/RuneWatch/Manual List",
|
||||
tags = {"PVM", "WDR", "RuneWatch"},
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class BanListPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -99,8 +99,10 @@ import net.runelite.client.menus.MenuManager;
|
||||
name = "BA Tools",
|
||||
description = "Custom tools for Barbarian Assault",
|
||||
tags = {"minigame", "overlay", "timer"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class BAToolsPlugin extends Plugin implements KeyListener
|
||||
{
|
||||
private boolean inGame;
|
||||
|
||||
@@ -50,8 +50,10 @@ import org.apache.commons.lang3.RandomUtils;
|
||||
name = "Blackjack",
|
||||
description = "Allows for one-click blackjacking, both knocking out and pickpocketing",
|
||||
tags = {"blackjack", "thieving"},
|
||||
type = PluginType.SKILLING
|
||||
type = PluginType.SKILLING,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Singleton
|
||||
@Slf4j
|
||||
public class BlackjackPlugin extends Plugin
|
||||
|
||||
@@ -33,6 +33,7 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class ClanManModePlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -70,8 +70,8 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "CoX Helper",
|
||||
description = "All-in-one plugin for Chambers of Xeric",
|
||||
tags = {"CoX", "chamber", "xeric", "helper"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
@@ -53,9 +53,10 @@ import net.runelite.client.util.ColorUtil;
|
||||
name = "Press Enter to Chat",
|
||||
description = "'Press Enter to Chat'",
|
||||
tags = {"enter", "chat"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class EnterToChatPlugin extends Plugin
|
||||
{
|
||||
private static final String PRESS_ENTER_TO_CHAT = "Press Enter to Chat...";
|
||||
|
||||
@@ -63,12 +63,11 @@ import net.runelite.client.util.Text;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Equipment Inspector",
|
||||
enabledByDefault = false,
|
||||
type = PluginType.PVP
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
public class EquipmentInspectorPlugin extends Plugin
|
||||
{
|
||||
private static final String INSPECT_EQUIPMENT = "Gear";
|
||||
|
||||
@@ -60,7 +60,8 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
name = "Fight Cave",
|
||||
description = "Displays current and upcoming wave monsters in the Fight Caves",
|
||||
tags = {"bosses", "combat", "minigame", "overlay", "pve", "pvm", "jad", "fire", "cape", "wave"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class FightCavePlugin extends Plugin
|
||||
|
||||
@@ -66,6 +66,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
tags = {"flexo", "null"},
|
||||
type = PluginType.UTILITY
|
||||
)
|
||||
|
||||
public class FlexoPlugin extends Plugin
|
||||
{
|
||||
private Flexo flexo;
|
||||
|
||||
@@ -53,9 +53,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Flinching Timer",
|
||||
description = "Time your attacks while flinching",
|
||||
tags = {"overlay", "flinching", "timers", "combat"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class FlinchingPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -45,8 +45,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Freeze Timers",
|
||||
description = "Shows a freeze timer overlay on players",
|
||||
tags = {"freeze", "timers", "barrage", "teleblock", "pklite"},
|
||||
type = PluginType.PVP
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class FreezeTimersPlugin extends Plugin
|
||||
{
|
||||
private final Map<String, FreezeInfo> freezes = new HashMap<>();
|
||||
|
||||
@@ -49,8 +49,10 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
name = "Friend Tagging",
|
||||
description = "Tag people on your friends list.",
|
||||
tags = {"PVP", "friend", "finder", "pk", "pklite"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class FriendTaggingPlugin extends Plugin
|
||||
{
|
||||
public static final ConcurrentHashMap<String, String> taggedFriends = new ConcurrentHashMap<>();
|
||||
|
||||
@@ -34,8 +34,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Grotesque Guardians",
|
||||
description = "Display tile indicators for the Grotesque Guardian special attacks",
|
||||
tags = {"grotesque", "guardians", "gargoyle", "garg"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class GrotesqueGuardiansPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -50,13 +50,12 @@ import net.runelite.client.plugins.PluginDescriptor;
|
||||
import net.runelite.client.plugins.PluginType;
|
||||
import net.runelite.client.plugins.hideprayers.util.PrayerTabStates;
|
||||
|
||||
@PluginDescriptor
|
||||
(
|
||||
name = "Show/Hide Prayers",
|
||||
description = "Hides specific Prayers.",
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
)
|
||||
@PluginDescriptor(
|
||||
name = "Show/Hide Prayers",
|
||||
description = "Hides specific Prayers.",
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class HidePrayersPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -57,6 +57,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class HighAlchemyPlugin extends Plugin
|
||||
{
|
||||
private static final String CONFIG_GROUP = "highalchemy";
|
||||
|
||||
@@ -47,8 +47,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Hydra Helper",
|
||||
description = "Overlays for small hydras",
|
||||
tags = {"Hydra", "Helper", "you", "probably", "want", "the", "other", "one"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class BabyHydraPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -42,9 +42,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Inventory Highlight",
|
||||
description = "Shows a preview of where items will be dragged",
|
||||
tags = {"items", "overlay"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class InventoryHighlightPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -64,8 +64,8 @@ import net.runelite.client.util.ImageUtil;
|
||||
name = "Inventory Setups",
|
||||
description = "Save inventory setups",
|
||||
tags = {"items", "inventory", "setups"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
@@ -32,9 +32,10 @@ import net.runelite.client.plugins.PluginType;
|
||||
@PluginDescriptor(
|
||||
name = "Kept on Death",
|
||||
description = "Reworks the Items Kept on Death interface to be more accurate",
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class KeptOnDeathPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -32,6 +32,7 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class LearnToClickPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -46,10 +46,11 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
@PluginDescriptor(
|
||||
name = "Lizard Shamans",
|
||||
description = "Configures timer for lizardmen shaman spawns.",
|
||||
enabledByDefault = false,
|
||||
tags = {"shaman", "lizard", "lizardmen"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class LizardmenShamanPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -23,6 +23,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class LootAssistPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -38,6 +38,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class LootingBagViewerPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -48,6 +48,7 @@ import net.runelite.client.plugins.maxhit.calculators.RangeMaxHitCalculator;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class MaxHitPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -92,6 +92,7 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class MenuEntrySwapperPlugin extends Plugin
|
||||
{
|
||||
private static final String CONFIGURE = "Configure";
|
||||
|
||||
@@ -63,6 +63,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.SKILLING,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class MiningPlugin extends Plugin
|
||||
{
|
||||
private static final Set<Integer> MOTHERLODE_MAP_REGIONS = ImmutableSet.of(14679, 14680, 14681, 14935, 14936, 14937, 15191, 15192, 15193);
|
||||
|
||||
@@ -56,9 +56,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Multi-Lines",
|
||||
description = "Show borders of multicombat and PvP safezones",
|
||||
tags = {"multicombat", "lines", "pvp", "deadman", "safezones", "bogla"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.PVP
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class MultiIndicatorsPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -52,8 +52,10 @@ import net.runelite.client.plugins.PluginType;
|
||||
@PluginDescriptor(
|
||||
name = "Music Track Indicator",
|
||||
description = "Show chat notifications when unlocking music tracks",
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class MusicIndicatorPlugin extends Plugin
|
||||
{
|
||||
private static final List<VarPlayer> MUSIC_TRACK_VARPS = ImmutableList.of(
|
||||
|
||||
@@ -39,15 +39,16 @@ import javax.inject.Singleton;
|
||||
import java.awt.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
@PluginDescriptor(
|
||||
name = "Pile Indicators",
|
||||
description = "Highlight and count how many npcs/players are stacked on each other.",
|
||||
tags = {"overlay", "pile", "stack", "pvp", "pvm", "pve"},
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Singleton
|
||||
@Slf4j
|
||||
@PluginDescriptor(
|
||||
name = "Pile Indicators",
|
||||
description = "Highlight and count how many npcs/players are stacked on each other.",
|
||||
tags = {"overlay", "pile", "stack", "pvp", "pvm", "pve"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
)
|
||||
public class PileIndicatorsPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ import net.runelite.client.ui.overlay.infobox.InfoBoxManager;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Singleton
|
||||
public class PlayerInfoPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -31,6 +31,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class PrayerAlertPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -41,8 +41,10 @@ import net.runelite.client.util.ImageUtil;
|
||||
name = "Account Switcher",
|
||||
description = "Allow for a allows you to easily switch between multiple OSRS Accounts",
|
||||
tags = {"profile", "account", "login", "log in", "pklite"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class ProfilesPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -65,8 +65,10 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
name = "PvP Tools",
|
||||
description = "Enable the PvP Tools panel",
|
||||
tags = {"panel", "pvp", "pk", "pklite", "renderself"},
|
||||
type = PluginType.PVP
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class PvpToolsPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -93,8 +93,10 @@ import org.apache.commons.lang3.StringUtils;
|
||||
name = "Chambers Of Xeric",
|
||||
description = "Show helpful information for the Chambers of Xeric raid",
|
||||
tags = {"combat", "raid", "overlay", "pve", "pvm", "bosses", "cox", "olm"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class RaidsPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -57,8 +57,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Raids Bat Finder",
|
||||
description = "Tracks which chests need to be searched for bats and which poison",
|
||||
tags = {"overlay", "skilling", "raid"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class RaidsThievingPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -44,6 +44,7 @@ import net.runelite.client.plugins.PluginType;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class RememberClanPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -39,8 +39,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Runedoku Solver",
|
||||
description = "Show solutions for current Runedoku puzzle.",
|
||||
tags = {"overlay", "runedoku", "sudoku", "puzzle", "solving"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
@Singleton
|
||||
public class RunedokuPlugin extends Plugin
|
||||
|
||||
@@ -38,6 +38,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class SafeSpotPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -44,8 +44,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Shayzien Infirmary",
|
||||
description = "Shows the status of wounded soldiers",
|
||||
tags = {"shayzien", "infirmary", "soldiers"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class ShayzienInfirmaryPlugin extends Plugin
|
||||
{
|
||||
@Getter(AccessLevel.PACKAGE)
|
||||
|
||||
@@ -42,9 +42,10 @@ import net.runelite.client.plugins.PluginType;
|
||||
name = "Shift To Walk",
|
||||
description = "Use Shift to toggle the Walk Here menu option. While pressed you will Walk rather than interact with objects.",
|
||||
tags = {"npcs", "items", "objects"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class ShiftWalkerPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -75,6 +75,7 @@ import net.runelite.client.util.Text;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class SlayermusiqPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -36,9 +36,10 @@ import net.runelite.client.plugins.PluginType;
|
||||
name = "Spec Bar",
|
||||
description = "Adds a spec bar to every weapon",
|
||||
tags = {"spec bar", "special attack", "spec", "bar", "pklite"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.PVP
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class SpecBarPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -67,8 +67,10 @@ import net.runelite.client.util.Text;
|
||||
name = "Spellbook",
|
||||
description = "Modifications to the spellbook",
|
||||
tags = {"resize", "spell", "mobile", "lowers", "pvp", "skill", "level"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class SpellbookPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -94,9 +94,10 @@ import net.runelite.client.util.Text;
|
||||
name = "Stoned Loot Tracker",
|
||||
description = "Tracks loot from monsters and minigames",
|
||||
tags = {"drops"},
|
||||
enabledByDefault = false,
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class StonedLootTrackerPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -184,6 +184,7 @@ import net.runelite.http.api.item.ItemPrice;
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
public class SuppliesTrackerPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -51,7 +51,8 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Tarn's Lair",
|
||||
description = "Mark tiles and clickboxes to help traverse the maze",
|
||||
tags = {"agility", "maze", "minigame", "overlay"},
|
||||
type = PluginType.UTILITY
|
||||
type = PluginType.UTILITY,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
@@ -49,8 +49,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Thieving",
|
||||
description = "Show thieving overlay",
|
||||
tags = {"overlay", "skilling", "thieving", "pickpocketing"},
|
||||
type = PluginType.SKILLING
|
||||
type = PluginType.SKILLING,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@PluginDependency(XpTrackerPlugin.class)
|
||||
public class ThievingPlugin extends Plugin
|
||||
{
|
||||
|
||||
@@ -42,8 +42,10 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Vetion Helper",
|
||||
description = "Tracks Vet'ion's special attacks",
|
||||
tags = {"bosses", "combat", "pve", "overlay"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class VetionPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -48,8 +48,10 @@ import net.runelite.client.util.ImageUtil;
|
||||
name = "Vorkath Helper",
|
||||
description = "Count vorkath attacks, and which phase is coming next",
|
||||
tags = {"combat", "overlay", "pve", "pvm"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class VorkathPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -58,6 +58,7 @@ import org.apache.commons.lang3.ArrayUtils;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class WarIndicatorPlugin extends Plugin
|
||||
{
|
||||
@Inject
|
||||
|
||||
@@ -46,6 +46,7 @@ import org.apache.commons.lang3.ObjectUtils;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class WhaleWatchersPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -46,6 +46,7 @@ import net.runelite.client.util.WildernessLocation;
|
||||
type = PluginType.PVP,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
public class WildernessLocationsPlugin extends Plugin
|
||||
{
|
||||
|
||||
|
||||
@@ -57,7 +57,8 @@ import net.runelite.client.ui.overlay.OverlayManager;
|
||||
name = "Zulrah Helper",
|
||||
description = "Shows tiles on where to stand during the phases and what prayer to use.",
|
||||
tags = {"zulrah", "boss", "helper"},
|
||||
type = PluginType.PVM
|
||||
type = PluginType.PVM,
|
||||
enabledByDefault = false
|
||||
)
|
||||
|
||||
@Slf4j
|
||||
|
||||
Reference in New Issue
Block a user