Help with Pex

Status
This thread has been locked.

Deviance

Banned
Feedback score
0
Posts
24
Reactions
1
Resources
0
I need help with Pex. I am trying to make it so people can only do /fly in the plot world when they buy it off of the enjin store. I need to know the command.

Is it
/pex user %playernamehere% add essentials.fly.plots
And plots being the plot world I want them to be able to fly in?
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Satan

Devil#0666
Supreme
Feedback score
52
Posts
3,667
Reactions
1,442
Resources
0
I thought it was just essentials.fly in general... you'd have to have an external plugin or something to check to only fly in plot world.
 

Deviance

Banned
Feedback score
0
Posts
24
Reactions
1
Resources
0
I thought it was just essentials.fly in general... you'd have to have an external plugin or something to check to only fly in plot world.
Do you know of a plugin that does that?
 
Banned forever. Reason: Ban Evading (Republished)

Ac3dUd3

Crocodile Hunter
Supreme
Feedback score
2
Posts
487
Reactions
261
Resources
0
you could give users per world permissions, you can find this here https://github.com/PEXPlugins/PermissionsEx/wiki/Advanced-permissions-setup

OR you could create a group and just give that group permission to use /fly only in a specified world for instance
Code:
Build:
    permissions:
    - essentials.warps.build
    - chatformat.Build
    - group.Build
    - essentails.warps.Build
    inheritance:
    - A
    worlds:
      build:
        permissions:
        - worldedit.*
        - essentials.fly
    options:
      prefix: '&8[&3Builder&8]&7: '
      weight: '3000'
      rank: '3000'
      rank-ladder: Build
A quick build rank I made for you, if you dont want the rank to show in your chat then remove the prefix obviously. As you can see this rank has permission to warp to the flatworld (build areas) that only build rank can access. And when they are in that world they get access to world edit and fly. you would obviously need to change the perms and names etc. Hope this helps
 

Satan

Devil#0666
Supreme
Feedback score
52
Posts
3,667
Reactions
1,442
Resources
0
Code:
 worlds:
      build:
        permissions:
        - worldedit.*
        - essentials.fly

That part in the pex example ^^^^
 

Ac3dUd3

Crocodile Hunter
Supreme
Feedback score
2
Posts
487
Reactions
261
Resources
0
I've tried using this before but I can't figure out how to make it work

How do I use that
you can literally copy and paste that into your pex config, it will create its own rank ladder, then in your buycraft or engin when a player purchases fly you make it run the command /pex user {name} group add Build

again you will need to change the name or permissions to suit your server
 

Deviance

Banned
Feedback score
0
Posts
24
Reactions
1
Resources
0
Ok thanks
you can literally copy and paste that into your pex config, it will create its own rank ladder, then in your buycraft or engin when a player purchases fly you make it run the command /pex user {name} group add Build

again you will need to change the name or permissions to suit your server
 
Banned forever. Reason: Ban Evading (Republished)
Status
This thread has been locked.
Top