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(
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"},
type = PluginType.UTILITY,
enabledByDefault = false

View File

@@ -146,12 +146,12 @@ public interface IdleNotifierConfig extends Config
name = "PKer Notifier",
position = 9,
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."
)
default boolean notifyPkers()
{
return true;
return false;
}
}

View File

@@ -44,7 +44,7 @@ import net.runelite.client.plugins.maxhit.calculators.RangeMaxHitCalculator;
@PluginDescriptor(
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,
enabledByDefault = false
)
@@ -134,5 +134,4 @@ public class MaxHitPlugin extends Plugin
return maxMagicHit;
}
}
}

View File

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

View File

@@ -54,8 +54,8 @@ import net.runelite.client.plugins.zulrah.phase.ZulrahPhase;
import net.runelite.client.ui.overlay.OverlayManager;
@PluginDescriptor(
name = "Zulrah",
description = "Overlays to assist with killing Zulrah",
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
)