turned off PKer Notifier by default, and other small updates (#445)

* turned off PKer Notifier by default, and other small updates

* better description for zulrah plugin
This commit is contained in:
supermxn
2019-05-30 03:25:44 -06:00
committed by Kyleeld
parent dd0f888fe5
commit a07fbb0aca
5 changed files with 146 additions and 147 deletions

View File

@@ -52,7 +52,7 @@ import net.runelite.client.ui.overlay.OverlayManager;
@PluginDescriptor( @PluginDescriptor(
name = "High Alchemy", name = "High Alchemy",
description = "*Highlights items that yield a profit from casting High Alchemy.", description = "Highlights items that yield a profit from casting the High Alchemy spell.",
tags = {"bank", "inventory", "overlay", "high", "alchemy", "grand", "exchange", "tooltips"}, tags = {"bank", "inventory", "overlay", "high", "alchemy", "grand", "exchange", "tooltips"},
type = PluginType.UTILITY, type = PluginType.UTILITY,
enabledByDefault = false enabledByDefault = false

View File

@@ -146,12 +146,12 @@ public interface IdleNotifierConfig extends Config
name = "PKer Notifier", name = "PKer Notifier",
position = 9, position = 9,
description = "Notifies if an attackable player based on your level range appears on screen.", description = "Notifies if an attackable player based on your level range appears on screen.",
group = "pvp", group = "PvP",
warning = "This will not notify you if the player is in your cc or is online on your friends list." warning = "This will not notify you if the player is in your cc or is online on your friends list."
) )
default boolean notifyPkers() default boolean notifyPkers()
{ {
return true; return false;
} }
} }

View File

@@ -44,7 +44,7 @@ import net.runelite.client.plugins.maxhit.calculators.RangeMaxHitCalculator;
@PluginDescriptor( @PluginDescriptor(
name = "Max Hit", name = "Max Hit",
description = "Max Hit Calculator", description = "Adds the max hit of the equipped weapon to the equipment and stats widget",
type = PluginType.UTILITY, type = PluginType.UTILITY,
enabledByDefault = false enabledByDefault = false
) )
@@ -134,5 +134,4 @@ public class MaxHitPlugin extends Plugin
return maxMagicHit; return maxMagicHit;
} }
} }
} }

View File

@@ -64,7 +64,7 @@ public interface PlayerIndicatorsConfig extends Config
) )
default boolean highlightFriends() default boolean highlightFriends()
{ {
return true; return false;
} }
@ConfigItem( @ConfigItem(
@@ -108,7 +108,7 @@ public interface PlayerIndicatorsConfig extends Config
) )
default boolean highlightTeamMembers() default boolean highlightTeamMembers()
{ {
return true; return false;
} }
@ConfigItem( @ConfigItem(
@@ -196,7 +196,7 @@ public interface PlayerIndicatorsConfig extends Config
) )
default boolean showClanRanks() default boolean showClanRanks()
{ {
return true; return false;
} }
@ConfigItem( @ConfigItem(
@@ -350,7 +350,7 @@ public interface PlayerIndicatorsConfig extends Config
) )
default boolean highlightCallers() default boolean highlightCallers()
{ {
return true; return false;
} }
@ConfigItem( @ConfigItem(

View File

@@ -54,8 +54,8 @@ import net.runelite.client.plugins.zulrah.phase.ZulrahPhase;
import net.runelite.client.ui.overlay.OverlayManager; import net.runelite.client.ui.overlay.OverlayManager;
@PluginDescriptor( @PluginDescriptor(
name = "Zulrah", name = "Zulrah Helper",
description = "Overlays to assist with killing Zulrah", description = "Shows tiles on where to stand during the phases and what prayer to use.",
tags = {"zulrah", "boss", "helper"}, tags = {"zulrah", "boss", "helper"},
type = PluginType.PVM type = PluginType.PVM
) )