Advertisement
Guest User

RevealClansConfig

a guest
Feb 21st, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. package net.runelite.client.plugins.revealclans;
  2.  
  3. import java.awt.Color;
  4. import net.runelite.client.config.Config;
  5. import net.runelite.client.config.ConfigGroup;
  6. import net.runelite.client.config.ConfigItem;
  7.  
  8. @ConfigGroup("revealclans")
  9. public interface RevealClansConfig extends Config {
  10.  
  11. @ConfigItem(
  12. position = 0,
  13. keyName = "clanList",
  14. name = "Reveal Single-Clans",
  15. description = "Reveals if players are members of a clan"
  16. )
  17. default boolean revealClanPlayers()
  18. {
  19. return true;
  20. }
  21.  
  22. @ConfigItem(
  23. position = 1,
  24. keyName = "drawMap",
  25. name = "Minimap overlay",
  26. description = "Draws an overlay on the minimap"
  27. )
  28. default boolean revealMinimap()
  29. {
  30. return true;
  31. }
  32.  
  33. @ConfigItem(
  34. position = 2,
  35. keyName = "drawName",
  36. name = "Name overlay",
  37. description = "Draws an overlay over the player"
  38. )
  39. default boolean revealName()
  40. {
  41. return true;
  42. }
  43.  
  44. @ConfigItem(
  45. position = 3,
  46. keyName = "clan1",
  47. name = "Kanini / Flamingos",
  48. description = "Accounts belonging to Kanini/Flamingos members"
  49. )
  50. default String clan1()
  51. {
  52. return "";
  53. }
  54.  
  55. @ConfigItem(
  56. position = 4,
  57. keyName = "clan2",
  58. name = "Frontline",
  59. description = "Accounts belonging to Frontline members"
  60. )
  61. default String clan2()
  62. {
  63. return "";
  64. }
  65.  
  66. @ConfigItem(
  67. position = 5,
  68. keyName = "clan3",
  69. name = "Solidtag",
  70. description = "Accounts belonging to Solidtag members"
  71. )
  72. default String clan3()
  73. {
  74. return "";
  75. }
  76.  
  77. @ConfigItem(
  78. position = 6,
  79. keyName = "clan4",
  80. name = "Wolves",
  81. description = "Accounts belonging to Wolves members"
  82. )
  83. default String clan4()
  84. {
  85. return "";
  86. }
  87.  
  88. @ConfigItem(
  89. position = 7,
  90. keyName = "clan5",
  91. name = "Other",
  92. description = "Accounts belonging to other Single-clans"
  93. )
  94. default String clan5()
  95. {
  96. return "";
  97. }
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement