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 :)

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...