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",
description = "Assists in clan PVP scenarios",
tags = {"highlight", "minimap", "overlay", "players"},
type = PluginType.PVP
type = PluginType.PVP,
enabledByDefault = false
)
public class ClanManModePlugin extends Plugin
{

View File

@@ -61,8 +61,7 @@ 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,
enabledByDefault = false
type = PluginType.PVM
)
public class FightCavePlugin extends Plugin

View File

@@ -59,7 +59,8 @@ import net.runelite.client.util.ImageUtil;
name = "Pray Against Player",
description = "Use plugin in PvP situations for best results!!",
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",
description = "Adds a right-click option to go to Slayermusiq1's guides from the quest tab",
tags = {"quest", "guide", "slayermusiq"},
type = PluginType.UTILITY
type = PluginType.UTILITY,
enabledByDefault = false
)
@Slf4j
public class SlayermusiqPlugin extends Plugin

View File

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

View File

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