Reorder Timer configuration options
This commit is contained in:
@@ -36,206 +36,7 @@ import net.runelite.client.config.ConfigItem;
|
|||||||
public interface TimersConfig extends Config
|
public interface TimersConfig extends Config
|
||||||
{
|
{
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "showStamina",
|
position = 0,
|
||||||
name = "Stamina timer",
|
|
||||||
description = "Configures whether stamina timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showStamina()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntiFire",
|
|
||||||
name = "AntiFire timer",
|
|
||||||
description = "Configures whether antifire timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showAntiFire()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showExAntiFire",
|
|
||||||
name = "Extended antifire timer",
|
|
||||||
description = "Configures whether extended antifire timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showExAntiFire()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showOverload",
|
|
||||||
name = "Overload timer",
|
|
||||||
description = "Configures whether overload timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showOverload()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showCannon",
|
|
||||||
name = "Cannon timer",
|
|
||||||
description = "Configures whether cannon timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showCannon()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showMagicImbue",
|
|
||||||
name = "Magic imbue timer",
|
|
||||||
description = "Configures whether magic imbue timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showMagicImbue()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showTeleblock",
|
|
||||||
name = "Teleblock timer",
|
|
||||||
description = "Configures whether teleblock timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showTeleblock()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntiVenomPlus",
|
|
||||||
name = "Anti-venom+ timer",
|
|
||||||
description = "Configures whether anti venom+ timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showAntiVenomPlus()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showSuperAntiFire",
|
|
||||||
name = "Super antifire timer",
|
|
||||||
description = "Configures whether super antifire timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showSuperAntiFire()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntidotePlusPlus",
|
|
||||||
name = "Antidote++ timer",
|
|
||||||
description = "Configures whether antidote++ timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showAntidotePlusPlus()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showImbuedHeart",
|
|
||||||
name = "Imbued heart timer",
|
|
||||||
description = "Configures whether imbued heart timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showImbuedHeart()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showVengeance",
|
|
||||||
name = "Vengeance timer",
|
|
||||||
description = "Configures whether vengeance timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showVengeance()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showVengeanceOther",
|
|
||||||
name = "Vengeance Other timer",
|
|
||||||
description = "Configures whether vengeance other timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showVengeanceOther()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showFreezes",
|
|
||||||
name = "Freeze timer",
|
|
||||||
description = "Configures whether freeze timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showFreezes()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showExSuperAntifire",
|
|
||||||
name = "Extended super antifire timer",
|
|
||||||
description = "Configures whether extended super antifire timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showExSuperAntifire()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showSanfew",
|
|
||||||
name = "Sanfew serum timer",
|
|
||||||
description = "Configures whether sanfew serum timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showSanfew()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntidotePlus",
|
|
||||||
name = "Antidote+ timer",
|
|
||||||
description = "Configures whether antidote+ timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showAntidotePlus()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntiVenom",
|
|
||||||
name = "Anti-venom timer",
|
|
||||||
description = "Configures whether antivenom timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showAntiVenom()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showPrayerEnhance",
|
|
||||||
name = "Prayer enhance timer",
|
|
||||||
description = "Configures whether prayer enhance timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showPrayerEnhance()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showGodWarsAltar",
|
|
||||||
name = "God wars altar timer",
|
|
||||||
description = "Configures whether god wars altar timer is displayed"
|
|
||||||
)
|
|
||||||
default boolean showGodWarsAltar()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
@ConfigItem(
|
|
||||||
keyName = "showAntipoison",
|
keyName = "showAntipoison",
|
||||||
name = "Antipoison timer",
|
name = "Antipoison timer",
|
||||||
description = "Configures whether Antipoison timer is displayed"
|
description = "Configures whether Antipoison timer is displayed"
|
||||||
@@ -246,6 +47,7 @@ public interface TimersConfig extends Config
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
|
position = 1,
|
||||||
keyName = "showSuperantipoison",
|
keyName = "showSuperantipoison",
|
||||||
name = "Superantipoison timer",
|
name = "Superantipoison timer",
|
||||||
description = "Configures whether Superantipoison timer is displayed"
|
description = "Configures whether Superantipoison timer is displayed"
|
||||||
@@ -254,4 +56,224 @@ public interface TimersConfig extends Config
|
|||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 2,
|
||||||
|
keyName = "showAntidotePlus",
|
||||||
|
name = "Antidote+ timer",
|
||||||
|
description = "Configures whether antidote+ timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showAntidotePlus()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 3,
|
||||||
|
keyName = "showAntidotePlusPlus",
|
||||||
|
name = "Antidote++ timer",
|
||||||
|
description = "Configures whether antidote++ timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showAntidotePlusPlus()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 4,
|
||||||
|
keyName = "showSanfew",
|
||||||
|
name = "Sanfew serum timer",
|
||||||
|
description = "Configures whether sanfew serum timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showSanfew()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 5,
|
||||||
|
keyName = "showAntiVenom",
|
||||||
|
name = "Anti-venom timer",
|
||||||
|
description = "Configures whether antivenom timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showAntiVenom()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 6,
|
||||||
|
keyName = "showAntiVenomPlus",
|
||||||
|
name = "Anti-venom+ timer",
|
||||||
|
description = "Configures whether anti venom+ timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showAntiVenomPlus()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 7,
|
||||||
|
keyName = "showAntiFire",
|
||||||
|
name = "AntiFire timer",
|
||||||
|
description = "Configures whether antifire timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showAntiFire()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 8,
|
||||||
|
keyName = "showExAntiFire",
|
||||||
|
name = "Extended antifire timer",
|
||||||
|
description = "Configures whether extended antifire timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showExAntiFire()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 9,
|
||||||
|
keyName = "showSuperAntiFire",
|
||||||
|
name = "Super antifire timer",
|
||||||
|
description = "Configures whether super antifire timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showSuperAntiFire()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 10,
|
||||||
|
keyName = "showExSuperAntifire",
|
||||||
|
name = "Extended super antifire timer",
|
||||||
|
description = "Configures whether extended super antifire timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showExSuperAntifire()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 11,
|
||||||
|
keyName = "showStamina",
|
||||||
|
name = "Stamina timer",
|
||||||
|
description = "Configures whether stamina timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showStamina()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 12,
|
||||||
|
keyName = "showOverload",
|
||||||
|
name = "Overload timer",
|
||||||
|
description = "Configures whether overload timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showOverload()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 13,
|
||||||
|
keyName = "showPrayerEnhance",
|
||||||
|
name = "Prayer enhance timer",
|
||||||
|
description = "Configures whether prayer enhance timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showPrayerEnhance()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 14,
|
||||||
|
keyName = "showCannon",
|
||||||
|
name = "Cannon timer",
|
||||||
|
description = "Configures whether cannon timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showCannon()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 15,
|
||||||
|
keyName = "showMagicImbue",
|
||||||
|
name = "Magic imbue timer",
|
||||||
|
description = "Configures whether magic imbue timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showMagicImbue()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 16,
|
||||||
|
keyName = "showImbuedHeart",
|
||||||
|
name = "Imbued heart timer",
|
||||||
|
description = "Configures whether imbued heart timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showImbuedHeart()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 17,
|
||||||
|
keyName = "showVengeance",
|
||||||
|
name = "Vengeance timer",
|
||||||
|
description = "Configures whether vengeance timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showVengeance()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 18,
|
||||||
|
keyName = "showVengeanceOther",
|
||||||
|
name = "Vengeance Other timer",
|
||||||
|
description = "Configures whether vengeance other timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showVengeanceOther()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 19,
|
||||||
|
keyName = "showTeleblock",
|
||||||
|
name = "Teleblock timer",
|
||||||
|
description = "Configures whether teleblock timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showTeleblock()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 20,
|
||||||
|
keyName = "showFreezes",
|
||||||
|
name = "Freeze timer",
|
||||||
|
description = "Configures whether freeze timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showFreezes()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
position = 21,
|
||||||
|
keyName = "showGodWarsAltar",
|
||||||
|
name = "God wars altar timer",
|
||||||
|
description = "Configures whether god wars altar timer is displayed"
|
||||||
|
)
|
||||||
|
default boolean showGodWarsAltar()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user