Jump to content

Recommended Posts

Posted

Does a plugin like that exist? I feel like that would be great, like say if someone donates, they have access to more items. I swear i've seen something like that, just not sure if it was custom coded for that server though.Any help would be greatly appreciated :)

  • 1 month later...
Posted

Something like this certainly does exist. It's called "Modify World" and it comes with permissionsEX. The only thing is its a pain because you have to write a permission node for every single thing each rank can craft, and add more or less depending on the rank.

  • Discord Moderator
Posted

nickrcole: Close, but it's not that difficult.

 

A combination of BanItem and ModifyWorld/PermissionsEX(Pex) will allow you to restrict certain blocks/items to specific ranks. Pex will stop checking for permissions nodes when it finds a match. This makes the order of the listed perm nodes in the config file important, but also makes it easier to restrict only some blocks/items. Place a node at the end of the perm list for a rank:

groups:
  Player:
    permissions:
    - modifyworld.*

Then, above that you would negate any items/blocks you wanted to restrict:

groups:
  Player:
    permissions:
    - -modifyworld.blocks.place.250:15
    - modifyworld.*

You can even restrict something like a quarry to only be usable in certain worlds:

groups:
  Player:
    worlds:
      DIM_MYST5:
        permissions:
        - modifyworld.blocks.place.250:15
    permissions:
    - -modifyworld.blocks.place.250:15
    - modifyworld.*
  • 4 weeks later...
Posted

Does a plugin like that exist? I feel like that would be great, like say if someone donates, they have access to more items. I swear i've seen something like that, just not sure if it was custom coded for that server though.Any help would be greatly appreciated :)

I know this comment comes late, but I have to point out that earning money on other peoples mods is illegal. This includes selling mod items.

  • Discord Moderator
Posted

I know this comment comes late, but I have to point out that earning money on other peoples mods is illegal. This includes selling mod items.

 

Everyone knows this and will either comply with the restriction or not. That being said, the instructions I provided are still quite useful since it is common to restrict blocks or items to specific ranks once players are trusted. This may (and should) have nothing to do with donations.

Posted

Everyone knows this and will either comply with the restriction or not. That being said, the instructions I provided are still quite useful since it is common to restrict blocks or items to specific ranks once players are trusted. This may (and should) have nothing to do with donations.

 

Does a plugin like that exist? I feel like that would be great, like say if someone donates, they have access to more items. I swear i've seen something like that, just not sure if it was custom coded for that server though.Any help would be greatly appreciated :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...