Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. LhommeFrancais

    Solved Painting Skript Issue

    Instead setting the block to {color.%player%} concrete, just set the variable in the gui to for example "brown concrete" not "brown." Also fixed the shovel thing. Hopefully this helps! on left click: player's tool is a shovel: event-block is concrete: set event-block to...
  2. LhommeFrancais

    Squad Shield

    Try this? Tell me if there are any problems with the whole damage thing or if there is anything you want me to add. Also you are going to need skDragon for the particles https://www.spigotmc.org/resources/skript-addon-skdragon-free-emotes-particles-great-eula-perks.24173/ # Squad Shield #...
  3. LhommeFrancais

    auto gens

    on break of emerald block: set {_loc} to location of block set block at {_loc} to emerald block add 10 to player's balance send "&a&l+ $10" to player OR on break of emerald block: cancel event add 10 to player's balance send "&a&l+ $10" to player
  4. LhommeFrancais

    Change gui menu on press

    format slot 8 of player with {item} named "%{itemname}%" to run [make player execute command "/phase2 8"] command /phase2 [<string>]: trigger: if arg 1 isn't set: stop: if arg 1 is set: if arg 1 is "0": format slot 0 of player with...
  5. LhommeFrancais

    auto gens

    Emerald Block Skript: on break of emerald block: add 10 to player's balance send "&a&l+ $10" to player Auto gen skript: on join: wait 1 tick while player is alive: if blocks in radius 10 of player contains red wool: add 4 to player's balance...
  6. LhommeFrancais

    Change gui menu on press

    First, you should really use TuSKe instead of skript gui management but oh well. Second: format slot 8 of player with {item} named "%{_itemname}%" to run [format slot 8 of player with {item2} named "%{_itemname2}%"] However, I would do it this way to make the code more straightforward and not...
  7. LhommeFrancais

    Solved A simple and quick help.

    on join: set {_waitedtime} to difference between {joinmessage.%player%.lastused} and now if {_waitedtime} is less than 24 hours: stop else: set {joinmessage.%player%.lastused} to now kick player
  8. LhommeFrancais

    Solved A simple and quick help.

    Saw this in the SKunity discord and replied to you... I'll put this here anyway though for you. on join: set {_waitedtime} to difference between {joinmessage.%player%.lastused} and now if {_waitedtime} is less than 24 hours: stop else: send "Hello" to player...
  9. LhommeFrancais

    Solved On Right Click of Iron Golem Spawner?

    Dang, you don't know how much I appreciate this! I've literally spent a whole day on trying to figure this out. Thank you so much! Works like a charm.
  10. LhommeFrancais

    Error skript

    make console execute command "minecraft:worldborder set 500 60" This uses the built in minecraft world border command but it actually would work quite well im guessing. The worldborder automatically shrinks to size 500 in this example in a matter of 60 seconds. or you could probably do loops...
  11. LhommeFrancais

    Error skript

    First of all, please use the Insert option and then code to make this more legible. Second of all, you are getting a couple of errors due to incorrect spacing but that is really easy to fix. Lastly, on the docs it says you need the Kosmos add-on to be able to use world border documentation and...
  12. LhommeFrancais

    Solved On Right Click of Iron Golem Spawner?

    Skript Version: 2.2-dev36 Minecraft Version: 1.8.8 Full Code: on right click on mob spawner: if clicked block with nbt "/*insert nbt or other solution/*": set {_loc} to block's location set {mgl::%{_loc}%} to 1 send "%{mgl::%{_loc}%}%" to player Errors on Reload...
  13. LhommeFrancais

    [CLOSED] Command executed on Faction Players

    Category: Factions & Placeholder Stuff Suggested name: Spigot/Skript Version: Spigot 1.8.8 / Skript 2.2-dev36 What I want: (I use SavageFactions: https://github.com/ProSavage/SavageFactions/wiki/Savage-Factions-Placeholders) (And I also use Ersatz for placeholders...
  14. LhommeFrancais

    Solved XP Teleport Delay

    Thank you so much!
  15. LhommeFrancais

    Solved XP Teleport Delay

    Category: \_(-_-)_/ Suggested name: XP-Delay Commands Spigot/Skript Version: Spigot 1.8.8 What I want: I desire a script that when you type a command for example: /delayspawn, it will check your xp levels and if you have 0 XP levels, it the script will wait 7 seconds and then run a player...