Jump to content

SIG12

Member
  • Posts

    40
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by SIG12

  1. Do you want it so they can only do it once? I also need the custom name you want. 

    Here's the base code I think you can edit it if you want:

    command /start:
        trigger:
            give player 1 of unbreakable wooden pickaxe named "&eCustom Name"
  2. 11 hours ago, _MyFamily_ said:

    im using it for stone iron and coal too but it does not work ? cn u tell why

     

    You replace stone with coal ore or iron ore, but you have to do it like this:
    For coal ore, it's the same thing just copy paste stone to execute console command then replace it with "coal ore"

    on mine:
        if event-block is stone: # the even block here Ex: wheat
            chance of 10%:
                execute console command "# Do the stuff here"
        if event-block is iron ore:
            chance of 10%:
                execute console command "# Do the stuff here"
  3. A plugin isn't really needed for this you can do normal gamerule commands I'm pretty sure, here's the commands:

    You can /gamerule playersSleepingPercentage 0 so only 1 person has to sleep

    You can do /gamerule playersSleepingPercentage 50 to make it so half of the players need to sleep

  4. On 7/7/2022 at 1:27 PM, gm6rh said:

    i am trying to make a skript where when you spawn, depending on what permission you have.

     

    on spawn:
        loop all players:
            loop-player has permission "prisoner":
                execute console command "/kit prisoner %player%"
            loop-player has permission "guard":
                execute console command "/kit guard %player%"

     

    i dont know why, but whenever i have either of those permissions, it doesnt even show up in console that it ran the kit command. can someone tell me how to fix it?

    For the respawn part:

    on respawn:
        player has permission "prisoner":
            execute console command "/kit prisoner %player%" # You can also make this: make the player say "/kit prisoner"
        player has permission "guard":
            execute console command "/kit guard %player%" # You can also make this: make the player say "/kit guard"

    For the join part: (also if you don't need any of the events, tell me because I just guessed if you wanted join or respawn)

    on join:
        player has permission "prisoner":
            execute console command "/kit prisoner %player%" # You can also make this: make the player say "/kit prisoner"
        player has permission "guard":
            execute console command "/kit guard %player%" # You can also make this: make the player say "/kit guard
  5. On 7/8/2022 at 8:54 PM, JustHex said:

    does anyone know if PermissionsEx  is going to be updated for 1.19 anytime soon? I want to be able to play with my friends but dont trust them to have op

    any other suggestions for the meantime?

    Maybe try and learn LP (LuckPerms) it's easier and has a website for it. 

×
×
  • Create New...