This commit is contained in:
Scott Burns
2019-05-16 01:27:28 +02:00
parent 4baf218f2f
commit ade46371fe
6 changed files with 12 additions and 8 deletions

View File

@@ -30,7 +30,8 @@ import org.apache.commons.lang3.ArrayUtils;
name = "Clan Man Mode", name = "Clan Man Mode",
description = "Assists in clan PVP scenarios", description = "Assists in clan PVP scenarios",
tags = {"highlight", "minimap", "overlay", "players"}, tags = {"highlight", "minimap", "overlay", "players"},
type = PluginType.PVP type = PluginType.PVP,
enabledByDefault = false
) )
public class ClanManModePlugin extends Plugin public class ClanManModePlugin extends Plugin
{ {

View File

@@ -61,8 +61,7 @@ import org.apache.commons.lang3.ArrayUtils;
name = "Fight Cave", name = "Fight Cave",
description = "Displays current and upcoming wave monsters in the Fight Caves", description = "Displays current and upcoming wave monsters in the Fight Caves",
tags = {"bosses", "combat", "minigame", "overlay", "pve", "pvm", "jad", "fire", "cape", "wave"}, tags = {"bosses", "combat", "minigame", "overlay", "pve", "pvm", "jad", "fire", "cape", "wave"},
type = PluginType.PVM, type = PluginType.PVM
enabledByDefault = false
) )
public class FightCavePlugin extends Plugin public class FightCavePlugin extends Plugin

View File

@@ -59,7 +59,8 @@ import net.runelite.client.util.ImageUtil;
name = "Pray Against Player", name = "Pray Against Player",
description = "Use plugin in PvP situations for best results!!", description = "Use plugin in PvP situations for best results!!",
tags = {"highlight", "pvp", "overlay", "players"}, tags = {"highlight", "pvp", "overlay", "players"},
type = PluginType.PVP type = PluginType.PVP,
enabledByDefault = false
) )
/** /**

View File

@@ -80,7 +80,8 @@ import net.runelite.client.plugins.PluginDescriptor;
name = "Slayermusiq1 Guides", name = "Slayermusiq1 Guides",
description = "Adds a right-click option to go to Slayermusiq1's guides from the quest tab", description = "Adds a right-click option to go to Slayermusiq1's guides from the quest tab",
tags = {"quest", "guide", "slayermusiq"}, tags = {"quest", "guide", "slayermusiq"},
type = PluginType.UTILITY type = PluginType.UTILITY,
enabledByDefault = false
) )
@Slf4j @Slf4j
public class SlayermusiqPlugin extends Plugin public class SlayermusiqPlugin extends Plugin

View File

@@ -43,7 +43,8 @@ import org.apache.commons.lang3.ObjectUtils;
name = "Whale Watchers", name = "Whale Watchers",
description = "A Plugin to save help whales in the wild", description = "A Plugin to save help whales in the wild",
tags = {"whale watchers", "whale", "protect item", "warning", "pklite"}, tags = {"whale watchers", "whale", "protect item", "warning", "pklite"},
type = PluginType.PVP type = PluginType.PVP,
enabledByDefault = false
) )
public class WhaleWatchersPlugin extends Plugin public class WhaleWatchersPlugin extends Plugin
{ {

View File

@@ -43,7 +43,8 @@ import net.runelite.client.util.WildernessLocation;
name = "Wild Locations", name = "Wild Locations",
description = "Indicates the players current location in the wild", description = "Indicates the players current location in the wild",
tags = {"Wildy", "Wilderness Location", "location", "loc", "pvp", "pklite"}, tags = {"Wildy", "Wilderness Location", "location", "loc", "pvp", "pklite"},
type = PluginType.PVP type = PluginType.PVP,
enabledByDefault = false
) )
public class WildernessLocationsPlugin extends Plugin public class WildernessLocationsPlugin extends Plugin
{ {
@@ -55,7 +56,7 @@ public class WildernessLocationsPlugin extends Plugin
OverlayManager overlayManager; OverlayManager overlayManager;
@Inject @Inject
private WildernessLocationsOverlay overlay = new WildernessLocationsOverlay(this.client, this); private WildernessLocationsOverlay overlay = new WildernessLocationsOverlay(this);
@Getter @Getter
private boolean renderLocation; private boolean renderLocation;