Jump to content

Preludial

Member
  • Posts

    39
  • Joined

  • Last visited

Posts posted by Preludial

  1. try this:

    on place of white wool:
      if player has white wool named "&fGenerator - Tier 1":
        set {_drop} to block above event-block
        add {_drop} to {t1drops::*}
        message "&a&lPlaced a Tier 1 Generator" 
    on break of white wool:
        remove block above event-block from {t1drops::*}
        give player 1 white wool named "&fGenerator - Tier 1"
        message "&c&lBroke a Tier 1 Generator" 
    every 5 seconds:
      drop 1 paper named "&a$1" at {t1drops::*} 
    
    on place of light gray wool:
      if player has light gray wool named "&8Generator - Tier 2":
        set {_drop} to block above event-block
        add {_drop} to {t2drops::*}
        message "&a&lPlaced a Tier 2 Generator" 
    on break of light gray wool:
        remove block above event-block from {t2drops::*}
        give player 1 light gray wool named "&8Generator - Tier 2"
        message "&c&lBroke a Tier 2 Generator" 
    every 5 seconds:
      drop 2 paper named "&a$1" at {t2drops::*} 

    Hope I helped you out!

    Edit: this is untested!

    • Like 1
  2. here you go:

    on death:
      set {deathlocation.%uuid of player%} to player's location
    command /back:
      trigger:
        teleport player to {deathlocation.%uuid of player%}
        send "&aYou teleported to your previous location!" to player
    
    on quit:
      delete {deathlocation.%uuid of player%}

    Hope that helped!

    • Like 1
  3. command /romehistory:
      trigger:
        message "&e[HISTORY]&8 -&7 Rome History"
        wait 5 ticks
        message " "
        wait 5 ticks
        message "&7(text) (text) (text)"

    each message "text" is a new line. If you would like something to be on the same line, instead of this:

        message "text text more text"    message "text text more text"    message "text text more text"

    message "text text more" 
    message "more text"

    use this:

    message "text text more text"

    Hope that helped!

  4. Hello, I would like to explain to you a better alternative to Essentials:

    Skript:
    First of all, download Skript, at the plugins page, then restart your server. once you do that, go to your Minehut Dashboard, then go to File Manager > Plugins > Skript > Scripts, and then add a file, named rules.sk. once done, go into the file, and type this:

    command /rules:
      trigger:
        send "'&8&--------&8&l[&c&l RULES&8&l ]&8&m--------" to player
        send " " to player
        send "&7[&c1&8]&7 Hacking is &c&lPROHIBITED!" to player
        send "&7[&c1&8]&7 Spamming is &c&lPROHIBITED!" to player
        send "&7[&c1&8]&7 DDoS / Doxxing threats are &c&lPROHIBITED!" to player
        send "&7[&c1&8]&7 Racial Slurs are &c&lPROHIBITED!" to player
        send "&7[&c1&8]&7 False Hackusation is &c&lPROHIBITED!" to player

    (change & add rules as you wish)
    now that you have done this, click save, and wait for the success message to pop up. Now just simply go ingame, and execute the command "/sk reload rules", and change rules to whatever you named the file. (the name is Cap Sensitive!).

    If this doesn't work, please tell me, and I will try and fix your problem!
    have a good day 😄

×
×
  • Create New...