Advertisement
Guest User

Untitled

a guest
May 23rd, 2011
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.20 KB | None | 0 0
  1. ********
  2. Alpha.yml
  3. ********
  4.  
  5. # System is no longer used, but may become used in the future
  6.  
  7. # Copies is for multiple-world support
  8.  
  9. # Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
  10.  
  11. # If this file is for your default world (the one in server.properties) then you must
  12.  
  13. # leave copies blank.
  14.  
  15. # Example: copies: Derp - This will clone the permissions of the world Derp
  16.  
  17. #
  18.  
  19. # Make sure to rename this file to the name of the world that is in sever.properties under
  20.  
  21. # level-name. So if it is level-name: world then this should be world.yml and in the
  22.  
  23. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  24.  
  25. #
  26.  
  27. # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid
  28.  
  29. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  30.  
  31. plugin:
  32.  
  33. permissions:
  34.  
  35. system: Default
  36.  
  37. copies:
  38.  
  39.  
  40.  
  41. ##
  42.  
  43. # AntiBuild is included with this. To disable a group from being able to build then
  44.  
  45. # set the build: flag to false (build: false). If you want a group to be able to build
  46.  
  47. # then set it to true.
  48.  
  49. ##
  50.  
  51. # Groups can contain inheritance.
  52.  
  53. # To make a group inherit the permissions from another
  54.  
  55. # group simply place the groups name in the "inheritance:" like so:
  56.  
  57. #
  58.  
  59. # Example:
  60.  
  61. # inheritance:
  62.  
  63. # - Default
  64.  
  65. ##
  66.  
  67. # All permissions including the asterisks must be placed in single quotes.
  68.  
  69. # like so:
  70.  
  71. #
  72.  
  73. # - 'foo.bar'
  74.  
  75. #
  76.  
  77. # Otherwise errors will happen!
  78.  
  79. ##
  80.  
  81. # Globalized Permission settings:
  82.  
  83. #
  84.  
  85. # If a permission contains periods (.) you can denote a globalized parameter:
  86.  
  87. #
  88.  
  89. # - 'foo.*'
  90.  
  91. #
  92.  
  93. # This will allow you to use all general commands.
  94.  
  95. #
  96.  
  97. ##
  98.  
  99. # Single Asterisk denotes all commands:
  100.  
  101. #
  102.  
  103. # - '*'
  104.  
  105. # If you give a group this permissions, do not have the group inherit any permissions
  106.  
  107. # from other groups. Any users assigned to this group should NOT be given any additional
  108.  
  109. # permissions either.
  110.  
  111. ##
  112.  
  113. # To exempt a node use the - prefix like so:
  114.  
  115. # - '-foo.bar'
  116.  
  117. ##
  118.  
  119. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  120.  
  121. # such as iChat or HeroChat in order for these to do anything.
  122.  
  123. groups:
  124.  
  125. Default:
  126.  
  127. default: true
  128.  
  129. info:
  130.  
  131. prefix: '&a'
  132.  
  133. suffix: '&e'
  134.  
  135. build: true
  136.  
  137. inheritance:
  138.  
  139. permissions:
  140.  
  141. - 'essentials.help'
  142.  
  143. - 'essentials.signs.mail.create'
  144.  
  145. - 'essentials.signs.mail.use'
  146.  
  147. - 'essentials.signs.protection.create'
  148.  
  149. - 'essentials.signs.protection.use'
  150.  
  151. - 'essentials.signs.warp.create'
  152.  
  153. - 'essentials.signs.warp.use'
  154.  
  155. - 'essentials.signs.trade.create'
  156.  
  157. - 'essentials.signs.trade.use'
  158.  
  159. - 'essentials.tpa'
  160.  
  161. - 'essentials.tpaccept'
  162.  
  163. - 'essentials.tpdeny'
  164.  
  165. - 'essentials.tpahere'
  166. - 'essentials.home'
  167. - 'essentials.sethome'
  168.  
  169. - 'essentials.warp'
  170.  
  171. - 'essentials.warp.list'
  172.  
  173. - 'essentials.worth'
  174.  
  175. - 'essentials.sell'
  176.  
  177. - 'essentials.balance'
  178.  
  179. - 'essentials.pay'
  180.  
  181. - 'essentials.msg'
  182.  
  183. - 'essentials.afk'
  184.  
  185. - 'essentials.me'
  186.  
  187. - 'essentials.list'
  188.  
  189. - 'essentials.mail'
  190.  
  191. - 'essentials.mail.send'
  192.  
  193. - 'essentials.nick'
  194.  
  195. - 'essentials.realname'
  196.  
  197. - 'essentials.seen'
  198.  
  199. - 'essentials.protect'
  200.  
  201. - 'essentials.spawn'
  202.  
  203. Moderator:
  204.  
  205. default: false
  206.  
  207. info:
  208.  
  209. prefix: ''
  210.  
  211. suffix: ''
  212.  
  213. build: true
  214.  
  215. inheritance:
  216.  
  217. - Default
  218.  
  219. permissions:
  220.  
  221. - 'bar.foo'
  222.  
  223. Admins:
  224.  
  225. default: false
  226.  
  227. info:
  228.  
  229. prefix: '&a'
  230.  
  231. suffix: '&e'
  232.  
  233. build: true
  234.  
  235. permissions:
  236.  
  237. - '*'
  238.  
  239.  
  240.  
  241. ##
  242.  
  243. # Users denote which users are included in which group.
  244.  
  245. # TheNo1Yeti is in the Admin group
  246.  
  247. # Herpina is a member of the Moderator group but also has access
  248.  
  249. # to the herp.derp permissions
  250.  
  251. # Derpina is a member of the admin group but does not have access
  252.  
  253. # to the derp.derp permission node
  254.  
  255. # Users can also have a prefix and suffix as seen with Herpina
  256.  
  257. ##
  258.  
  259. users:
  260.  
  261. Trevor:
  262.  
  263. group: Admins
  264.  
  265. info:
  266.  
  267. prefix: '&a'
  268.  
  269. suffix: '&6'
  270.  
  271. TheNo1Yeti:
  272.  
  273. group: Admins
  274.  
  275. permissions:
  276.  
  277. Herpina:
  278.  
  279. group: Moderator
  280.  
  281. info:
  282.  
  283. prefix: 'Moo'
  284.  
  285. suffix: 'Cow'
  286.  
  287. permissions:
  288.  
  289. - 'herp.derp'
  290.  
  291. Derpina:
  292.  
  293. group: Admins
  294.  
  295. permissions:
  296.  
  297. - '-derp.derp'
  298.  
  299. ******
  300. Beta.yml
  301. ******
  302.  
  303. # System is no longer used, but may become used in the future
  304.  
  305. # Copies is for multiple-world support
  306.  
  307. # Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
  308.  
  309. # If this file is for your default world (the one in server.properties) then you must
  310.  
  311. # leave copies blank.
  312.  
  313. # Example: copies: Derp - This will clone the permissions of the world Derp
  314.  
  315. #
  316.  
  317. # Make sure to rename this file to the name of the world that is in sever.properties under
  318.  
  319. # level-name. So if it is level-name: world then this should be world.yml and in the
  320.  
  321. # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
  322.  
  323. #
  324.  
  325. # NOTE: Do not use tabs while editing this document. Use only spaces. A good way to avoid
  326.  
  327. # doing this is to use Notepad++ and replace the tab with 4 spaces.
  328.  
  329. plugin:
  330.  
  331. permissions:
  332.  
  333. system: Default
  334.  
  335. copies:
  336.  
  337.  
  338.  
  339. ##
  340.  
  341. # AntiBuild is included with this. To disable a group from being able to build then
  342.  
  343. # set the build: flag to false (build: false). If you want a group to be able to build
  344.  
  345. # then set it to true.
  346.  
  347. ##
  348.  
  349. # Groups can contain inheritance.
  350.  
  351. # To make a group inherit the permissions from another
  352.  
  353. # group simply place the groups name in the "inheritance:" like so:
  354.  
  355. #
  356.  
  357. # Example:
  358.  
  359. # inheritance:
  360.  
  361. # - Default
  362.  
  363. ##
  364.  
  365. # All permissions including the asterisks must be placed in single quotes.
  366.  
  367. # like so:
  368.  
  369. #
  370.  
  371. # - 'foo.bar'
  372.  
  373. #
  374.  
  375. # Otherwise errors will happen!
  376.  
  377. ##
  378.  
  379. # Globalized Permission settings:
  380.  
  381. #
  382.  
  383. # If a permission contains periods (.) you can denote a globalized parameter:
  384.  
  385. #
  386.  
  387. # - 'foo.*'
  388.  
  389. #
  390.  
  391. # This will allow you to use all general commands.
  392.  
  393. #
  394.  
  395. ##
  396.  
  397. # Single Asterisk denotes all commands:
  398.  
  399. #
  400.  
  401. # - '*'
  402.  
  403. # If you give a group this permissions, do not have the group inherit any permissions
  404.  
  405. # from other groups. Any users assigned to this group should NOT be given any additional
  406.  
  407. # permissions either.
  408.  
  409. ##
  410.  
  411. # To exempt a node use the - prefix like so:
  412.  
  413. # - '-foo.bar'
  414.  
  415. ##
  416.  
  417. # prefix: and suffix: do not do anything on their own. You need another outside plugin
  418.  
  419. # such as iChat or HeroChat in order for these to do anything.
  420.  
  421. groups:
  422.  
  423. Default:
  424.  
  425. default: true
  426.  
  427. info:
  428.  
  429. prefix: '&4'
  430.  
  431. suffix: '&e'
  432.  
  433. build: true
  434.  
  435. inheritance:
  436.  
  437. permissions:
  438.  
  439. - 'essentials.help'
  440. - 'essentials.worth'
  441. - 'essentials.balance'
  442. - 'essentials.pay'
  443. - 'essentials.msg'
  444. - 'essentials.afk'
  445. - 'essentials.me'
  446. - 'essentials.list'
  447. - 'essentials.mail'
  448. - 'essentials.mail.send'
  449. - 'essentials.nick'
  450. - 'essentials.realname'
  451. - 'essentials.seen'
  452. - 'essentials.protect'
  453. - 'essentials.spawn'
  454. Moderator:
  455.  
  456. default: false
  457.  
  458. info:
  459.  
  460. prefix: ''
  461.  
  462. suffix: ''
  463.  
  464. build: true
  465.  
  466. inheritance:
  467.  
  468. - Default
  469.  
  470. permissions:
  471.  
  472. - 'bar.foo'
  473.  
  474. Admins:
  475.  
  476. default: false
  477.  
  478. info:
  479.  
  480. prefix: '&4'
  481.  
  482. suffix: '&e'
  483.  
  484. build: true
  485.  
  486. permissions:
  487.  
  488. - '*'
  489.  
  490.  
  491.  
  492. ##
  493.  
  494. # Users denote which users are included in which group.
  495.  
  496. # TheNo1Yeti is in the Admin group
  497.  
  498. # Herpina is a member of the Moderator group but also has access
  499.  
  500. # to the herp.derp permissions
  501.  
  502. # Derpina is a member of the admin group but does not have access
  503.  
  504. # to the derp.derp permission node
  505.  
  506. # Users can also have a prefix and suffix as seen with Herpina
  507.  
  508. ##
  509.  
  510. users:
  511. Trevor:
  512. group: Admins
  513. info:
  514.  
  515. prefix: '&4'
  516.  
  517. suffix: '&6'
  518. TheNo1Yeti:
  519.  
  520. group: Admins
  521.  
  522. permissions:
  523.  
  524. Herpina:
  525.  
  526. group: Moderator
  527.  
  528. info:
  529.  
  530. prefix: 'Moo'
  531.  
  532. suffix: 'Cow'
  533.  
  534. permissions:
  535.  
  536. - 'herp.derp'
  537.  
  538. Derpina:
  539.  
  540. group: Admins
  541.  
  542. permissions:
  543.  
  544. - '-derp.derp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement