Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.25 KB | None | 0 0
  1. package us.hcrealms.hcf;
  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.  
  15. // Command
  16. public static String BROADCAST_CMD = "hcf.command.broadcast";
  17. public static String CROWBAR_CMD = "hcf.command.crowbar";
  18. public static String ENDPORTAL_CMD = "hcf.command.endportal";
  19. public static String FFA_CMD = "hcf.command.ffa";
  20. public static String ITEM_CMD = "hcf.command.item";
  21. public static String FREEZE_CMD = "hcf.command.freeze";
  22. public static String KITMAP_CMD = "hcf.command.kitmap";
  23. public static String PLAYTIME_CMD = "hcf.command.playtime";
  24. public static String ENDERCHEST_CMD = "hcf.command.enderchest";
  25. public static String ENDERCHEST_OTHERS_CMD = "hcf.command.enderchest.others";
  26. public static String INVRESTORE_CMD = "hcf.command.invrestore";
  27. public static String RESETSTATS_CMD = "hcf.command.resetstats";
  28. public static String VANISH_CMD = "hcf.command.vanish";
  29. public static String SETBORDER_CMD = "hcf.command.setborder";
  30. public static String SET_CMD = "hcf.command.set";
  31. public static String SETKB_CMD = "hcf.command.setkb";
  32. public static String SETSPAWN_CMD = "hcf.command.setspawn";
  33. public static String SPAWN_CMD = "hcf.command.spawn";
  34. public static String SPAWN_OTHERS_CMD = "hcf.command.spawn.others";
  35. public static String SPAWNER_CMD = "hcf.command.spawner";
  36. public static String ADVANCED_ECONOMY_CMD = "hcf.command.advancedeco";
  37. public static String CLEARDEATHBANS_CMD = "hcf.command.cleardeathbans";
  38. public static String DEATHBANSET_CMD = "hcf.command.deathbanset";
  39. public static String SETDEATHBANTIME_CMD = "hcf.command.setdeathbantime";
  40. public static String STAFFREVIVE_CMD = "hcf.command.staffrevive";
  41. public static String EVENT_CMD = "hcf.command.event";
  42. public static String GLOWSTONE_CMD = "hcf.command.glowstone";
  43. public static String SOTW_CMD = "hcf.command.sotw";
  44.  
  45. // Deathban
  46. public static String DEATHBAN_BYPASS = "hcf.deathban.bypass";
  47. public static String BETRAYER = "hcf.deathban.betrayer";
  48. public static String INSIDER = "hcf.deathban.insider";
  49. public static String SAIFED = "hcf.deathban.saifed";
  50. public static String SAPPHIRE = "hcf.deathban.sapphire";
  51. public static String GOLD = "hcf.deathban.gold";
  52. public static String SILVER = "hcf.deathban.silver";
  53.  
  54. // Lives
  55. public static String LIVES_CHECK = "hcf.lives.check";
  56. public static String LIVES_CHECKDEATHBAN = "hcf.lives.checkdeathban";
  57. public static String LIVES_GIVE = "hcf.lives.give";
  58. public static String LIVES_GIVE_INFINITE = "hcf.lives.give.infinite";
  59. public static String LIVES_REVIVE = "hcf.lives.revive";
  60. public static String LIVES_REVIVE_BYPASS = "hcf.lives.revive.bypass";
  61. public static String LIVES_SET = "hcf.lives.set";
  62.  
  63. // Event
  64. public static String EVENT_CANCEL = "hcf.event.cancel";
  65. public static String EVENT_CREATE = "hcf.event.create";
  66. public static String EVENT_DELETE = "hcf.event.delete";
  67. public static String EVENT_RENAME = "hcf.event.rename";
  68. public static String EVENT_SETAREA = "hcf.event.setarea";
  69. public static String EVENT_SETCAPZONE = "hcf.event.setcapzone";
  70. public static String EVENT_START = "hcf.event.start";
  71. public static String EVENT_UPTIME = "hcf.event.uptime";
  72. public static String EVENT_CONQUEST_CMD = "hcf.event.conquest";
  73.  
  74. // Koth
  75. public static String KOTH_NEXT = "hcf.koth.next";
  76. public static String KOTH_SCHEDULE = "hcf.koth.schedule";
  77. public static String KOTH_SETCAPTUREDELAY = "hcf.koth.setcapturedelay";
  78.  
  79. // Listeners
  80. public static String AUTO_SMELT_ORE = "hcf.autosmeltore";
  81. public static String CREATE_SIGNS = "hcf.createsigns";
  82. public static String CREATECOLORED_SIGNS = "hcf.createcoloredsigns";
  83. public static String PROTECTION_BYPASAS = "hcf.bypass";
  84. public static String DROP_HEAD = "hcf.drophead";
  85.  
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement