Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.70 KB | None | 0 0
  1. package me.mauuuh.factions;
  2.  
  3. public class Permissions {
  4.  
  5. // Rank
  6. public static String STAFF = "hcf.staff";
  7. public static String DONATOR = "hcf.donator";
  8.  
  9. // Revive
  10. public static String SILVERREVIVE_CMD = "hcf.revive.silver";
  11. public static String GOLDREVIVE_CMD = "hcf.revive.gold";
  12. public static String SAPPHIREREVIVE_CMD = "hcf.revive.sapphire";
  13. public static String SAIFEDREVIVE_CMD = "hcf.revive.saifed";
  14. public static String SAIFEDPLUS_CMD = "hcf.revive.saifedplus";
  15.  
  16. // Command
  17. public static String BROADCAST_CMD = "hcf.command.broadcast";
  18. public static String CROWBAR_CMD = "hcf.command.crowbar";
  19. public static String ENDPORTAL_CMD = "hcf.command.endportal";
  20. public static String FFA_CMD = "hcf.command.ffa";
  21. public static String ITEM_CMD = "hcf.command.item";
  22. public static String FREEZE_CMD = "hcf.command.freeze";
  23. public static String KITMAP_CMD = "hcf.command.kitmap";
  24. public static String PLAYTIME_CMD = "hcf.command.playtime";
  25. public static String INVRESTORE_CMD = "hcf.command.invrestore";
  26. public static String RESETSTATS_CMD = "hcf.command.resetstats";
  27. public static String VANISH_CMD = "hcf.command.vanish";
  28. public static String SETBORDER_CMD = "hcf.command.setborder";
  29. public static String SET_CMD = "hcf.command.set";
  30. public static String SETKB_CMD = "hcf.command.setkb";
  31. public static String SETSPAWN_CMD = "hcf.command.setspawn";
  32. public static String SPAWN_CMD = "hcf.command.spawn";
  33. public static String SPAWN_OTHERS_CMD = "hcf.command.spawn.others";
  34. public static String SPAWNER_CMD = "hcf.command.spawner";
  35. public static String ADVANCED_ECONOMY_CMD = "hcf.command.advancedeco";
  36. public static String CLEARDEATHBANS_CMD = "hcf.command.cleardeathbans";
  37. public static String DEATHBANSET_CMD = "hcf.command.deathbanset";
  38. public static String SETDEATHBANTIME_CMD = "hcf.command.setdeathbantime";
  39. public static String STAFFREVIVE_CMD = "hcf.command.staffrevive";
  40. public static String EVENT_CMD = "hcf.command.event";
  41. public static String GLOWSTONE_CMD = "hcf.command.glowstone";
  42. public static String SOTW_CMD = "hcf.command.sotw";
  43. public static String SETBETRAYER_CMD = "hcf.command.setbetrayer";
  44. public static String SETINSIDER_CMD = "hcf.command.setinsider";
  45. public static String NEAR_CMD = "hcf.command.near";
  46. public static String CRAFT_CMD = "hcf.command.craft";
  47. public static String TIMER_CMD = "hcf.command.timer";
  48. public static String RECLAIM_CMD = "hcf.command.reclaim";
  49. public static String ENDPLAYERS_CMD = "hcf.command.endplayers";
  50. public static String NETHERPLAYERS_CMD = "hcf.command.netherplayers";
  51. public static String TELEPORT_CMD = "hcf.command.teleport";
  52. public static String TELEPORTHERE_CMD = "hcf.command.teleporthere";
  53. public static String TELEPORTALL_COMMAND = "hcf.command.teleportall";
  54. public static String HEAL_COMMAND = "hcf.command.heal";
  55.  
  56. // Deathban
  57. public static String DEATHBAN_BYPASS = "hcf.deathban.bypass";
  58. public static String BETRAYER = "hcf.deathban.betrayer";
  59. public static String INSIDER = "hcf.deathban.insider";
  60. public static String SAIFEDPLUS = "hcf.deathban.saifedplus";
  61. public static String SAIFED = "hcf.deathban.saifed";
  62. public static String SAPPHIRE = "hcf.deathban.sapphire";
  63. public static String GOLD = "hcf.deathban.gold";
  64. public static String SILVER = "hcf.deathban.silver";
  65.  
  66. // Lives
  67. public static String LIVES_CHECK = "hcf.lives.check";
  68. public static String LIVES_CHECKDEATHBAN = "hcf.lives.checkdeathban";
  69. public static String LIVES_GIVE = "hcf.lives.give";
  70. public static String LIVES_GIVE_INFINITE = "hcf.lives.give.infinite";
  71. public static String LIVES_REVIVE = "hcf.lives.revive";
  72. public static String LIVES_REVIVE_BYPASS = "hcf.lives.revive.bypass";
  73. public static String LIVES_SET = "hcf.lives.set";
  74.  
  75. // Event
  76. public static String EVENT_CANCEL = "hcf.event.cancel";
  77. public static String EVENT_CREATE = "hcf.event.create";
  78. public static String EVENT_DELETE = "hcf.event.delete";
  79. public static String EVENT_RENAME = "hcf.event.rename";
  80. public static String EVENT_SETAREA = "hcf.event.setarea";
  81. public static String EVENT_SETCAPZONE = "hcf.event.setcapzone";
  82. public static String EVENT_START = "hcf.event.start";
  83. public static String EVENT_UPTIME = "hcf.event.uptime";
  84. public static String EVENT_CONQUEST_CMD = "hcf.event.conquest";
  85.  
  86. // Koth
  87. public static String KOTH_NEXT = "hcf.koth.next";
  88. public static String KOTH_SCHEDULE = "hcf.koth.schedule";
  89. public static String KOTH_SETCAPTUREDELAY = "hcf.koth.setcapturedelay";
  90. public static String KOTH_CAPPER = "hcf.koth.checkcapper";
  91.  
  92. // Listeners
  93. public static String AUTO_SMELT_ORE = "hcf.autosmeltore";
  94. public static String CREATE_SIGNS = "hcf.createsigns";
  95. public static String CREATECOLORED_SIGNS = "hcf.createcoloredsigns";
  96. public static String PROTECTION_BYPASS = "hcf.bypass";
  97. public static String DROP_HEAD = "hcf.drophead";
  98. public static String EGGSWAPP = "hcf.eggswapp";
  99. public static String SNOWBALL = "hcf.snowball";
  100. public static String GRAPPLING_HOOK = "hcf.grappling";
  101.  
  102. // Faction Staff
  103. public static String FACTION_SETDTRREGEN = "hcf.faction.setdtrregen";
  104. public static String FACTION_SETDTR = "hcf.faction.setdtr";
  105. public static String FACTION_SETDEATHBANMULTIPLIER = "hcf.faction.setdeathbanmultiplier";
  106. public static String FACTION_FORCEDISBAND = "hcf.faction.forcedisband";
  107. public static String FACTION_MUTE = "hcf.faction.mute";
  108. public static String FACTION_LOCK = "hcf.faction.lock";
  109. public static String FACTION_FORCEPROMOTE = "hcf.faction.forcepromote";
  110. public static String FACTION_FORCELEADER = "hcf.faction.forceleader";
  111. public static String FACTION_FORCEJOIN = "hcf.faction.forcejoin";
  112. public static String FACTION_CLEARCLAIMS = "hcf.faction.forceclearclaims";
  113. public static String FACTION_CLAIMFOR = "hcf.faction.claimfor";
  114. public static String FACTION_CHATSPY = "hcf.faction.chatspy";
  115.  
  116. // Enderchest
  117. public static final String ENDERCHEST_CMD = "hcf.command.enderchest";
  118. public static final String ENDERCHEST_ADMIN = "hcf.command.enderchest.admin";
  119. public static final String SIX_ROWS = "hcf.enderchest.sixrows";
  120. public static final String FIVE_ROWS = "hcf.enderchest.fiverows";
  121. public static final String FOUR_ROWS = "hcf.enderchest.fourrows";
  122. public static final String THREE_ROWS = "hcf.enderchest.threerows";
  123. public static final String TWO_ROWS = "hcf.enderchest.tworows";
  124. public static final String ONE_ROW = "hcf.enderchest.onerow";
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement