Jump to content

DanRub

Member
  • Posts

    47
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by DanRub

  1. Hello, if you need help with more skripts i can do it, but only with smallers, if you need a long code, it wont be for free, if you are interested contact me at discord name "danrub"

  2. command /warp:
       usage: usages /warp
       trigger:
          set {_menu} to a new chest inventory with 5 rows named "&cWarp Gui"
          set slot 0 and 1 and 2 and 3 and 4 and 5 and 6 and 7 and 8 and 9 and 17 and 18 and 26 and 27 and 35 and 36 and 37 and 38 and 39 and 40 and 41 and 42 and 43 and 44 of {_menu} to gray stained glass pane named " "
          set slot 13 of {_menu} to skull of "%player%" parsed as offline player named "Home"
          open {_menu} to player
    
    on inventory click: # Listen for players clicking in an inventory.
        name of event-inventory is "&cWarp Gui" # Make sure it's our menu.
        cancel event
        if index of event-slot is 0 and 1 and 2 and 3 and 5 and 6 and 7 and 8 and 9 and 17 and 18 and 26 and 27 and 35 and 36 and 37 and 38 and 39 and 40 and 41 and 42 and 43 and 44: # The button slot.
            cancel event

    This is the skript, where you have your head when you execute the command.

  3. Hey, if you are making minecraft server and you are planning to make skript codes but you are just beginner i can make some codes for you, or teach you the basic things. I can make easier codes for free but some hard ones for some small amount of cash, if you are interested, reply with your discord name on this post.

  4. Hey, you can try this, also add permission "report.recieve" for every permission that you want to get reports after someone report, because for the rank weight is need some special addon..

    command /report <player> <text>:
        usage: &cUse: /report <player> <reason>
        cooldown: 2 minutes
        cooldown message: &fPlease wait &e%remaining time% &funtil you can use this command again!
        trigger:
            if arg-1 is set:
                if arg-1 is online:
                    if arg-2 is set:
                        if arg-1 does not have permission "report.bypass":
                            send "&7You have successfully reported &c%arg-1% &7for &c&o%arg-2%&7!" to player
                            set {_e} to executor
                            loop all players:
                                if loop-player has permission "report.recieve":
                                    send "&a%{_e}% &7reported &c%arg-1% &7for &c&o%arg-2%" to loop-player
                        else:
                            send "&cYou can't report this player!" to player
                            cancel the cooldown
                            stop
                    else:
                        send "&cIf you want to report a player, add a reason!" to player
                        cancel the cooldown
                        stop
                else:
                    send "&cPlayer &c&l%arg-1% &cis not online!" to player
                    cancel the cooldown
                    stop
            else:
                send "&cUse: /report <player> <reason>"
                cancel the cooldown
                stop

     

  5. Hey, instead of 

    if player's held item is a iron hoe named "&f&lPorcelain &7&lDipper":

    Try

    if tool of player is iron hoe:
       if name of tool of player is "&f&lPorcelain &7&lDipper":

    just add 1 condition, because skript is bugging in this sometime.

    (if it works, just do it for every that does not work)

×
×
  • Create New...