Solved make a region

Discussion in 'Plugin Development' started by tyler672, Jan 14, 2017.

Thread Status:
Not open for further replies.
  1. Offline

    tyler672

    how do i make it that when you make a region with worldedit and type a command something happens only in that region, for example. when i make a region and type /noplace then no one can place a block in that region
     
  2. Offline

    RelicObject

    You can use worldguard.

    Select an area with worldedit and type
    Code:
    /region define <name>
    That will create the region.

    You can edit the region's flags to allow or deny people to do certain things or stop events.
    Code:
    /rg flag <region name> construct deny
    List of flags:
    http://wiki.sk89q.com/wiki/WorldGuard/Regions/Flags
     
    Last edited: Jan 14, 2017
  3. Offline

    tyler672

    i know worldguard but the point of this is not the command it is how do i specify a place with worldedit


    @JanTuck and @RelicObject what i mean is that im doing a plugin that when ever you select a region with worldedit and i typed /multidrop then when you break an ore the ore drops 2 ingitos only in the region. so im asking how would i do the worldedit thing??


    @AlvinB you might know this can you help please
     
    Last edited: Jan 15, 2017
  4. Offline

    JanTuck

    Use the wand specified in config default is a wooden axe, then just left click one corner and right click other

    Sendt fra min ALE-L21 med Tapatalk
     
    RelicObject likes this.
  5. Offline

    tyler672

  6. Offline

    kameronn

    Use worldguard api, get the region they're in, set make a list, listen on block place event check if the block location is in a region , check if they're in the list, if not cancel
     
  7. Offline

    DoggyCode™

    Off-topic:
    You are Norwegian?

    On-topic:
    What'd I do is to have them create a region using WorldGuard and WorldEdit, then using the World Guard API to get this region by id (would be what the player called the region), and drop your ingots within that region.
     
  8. Offline

    JanTuck

    Danish.
     
    Last edited: Jan 16, 2017
  9. Offline

    tyler672


    thx for help
     
Thread Status:
Not open for further replies.

Share This Page