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 community!

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

  1. JustADev

    Holgrams?

    Why can't I set this variable to a holo? code: set block at {_loc} to a ender chest create hologram "&2&lEmerald Generator; &7Level 1" at location 1 above {_Loc}
  2. JustADev

    Solved expression for the person who placed a block

    Q: Is there an expression for a person who placed down a block like "Block Placer"?
  3. JustADev

    Solved Block location next to block in all directions?

    Plugins: SkQuery Skript 2.2 SkDragon Umbaska Version; Spigot 1.8 Question: How do I make it so that when emerald ore is placed in a cross like this: Key: x = air o = ore xox ooo xox that the blocks are removed and an enderchest spawns in the middle?
  4. JustADev

    Block Place

    Plugins: SkQuery Skript 2.2 SkDragon Umbaska Version; Spigot 1.8 Question: How do I make it so that when emerald ore is placed in a cross like this: Key: x = air o = ore xox ooo xox that the blocks are removed and an enderchest spawns in the middle?
  5. JustADev

    Hologram Top 5 Leaderboard

    Plugins Installed: Skript v2.2 SkQuery Umbaska SkDragon HolographicDisplays Server Version: Spigot-1.8-version Question: Why does my code not recognize the loop-index? https://gyazo.com/e795496066943eef7c038a17652b9181 Code: every 5 seconds: loop {Kills::*}: add 1 to {_size}...
  6. JustADev

    Timing Help

    Q: How do I make this remove 1 second while {Time::%player%} is set? Code: command /dailyrewards: description: Rewards command trigger: wait 1 tick open chest with 1 row named "Daily Rewards" to player wait 1 tick if {Time::%player%} is not set...
  7. JustADev

    Solved Allow color codes passthrough

    Q: How do I make it so that if I do /devalert &5Hello it says &5Hello? Code: command /devalert [<text>]: trigger: if arg-1 is not set: send "&cYou must specify a text" else: broadcast "&cDevelopment &8&l» &7%arg-1%" play "NOTE_PLING" to...
  8. JustADev

    Yin Yang

    Q: Is there any way to make the Yin Yang symbol at someones feet using skdragon/particles?
  9. JustADev

    Death help

    Q: How do I make it so that if you kill yourself, it doesnt make you execute the command "/g1234" Code: if damage was caused by attack: if victim is player: if {DeathMessages} is set: set {VHealth::%attacker%} to rounded health of attacker...
  10. JustADev

    Teleportation with blocks

    Question: How do I make it so when a player right clicks the sword and teleports, that if there is a block in front of them, it will teleport them 1 block away from the block? Code: on rightclick with diamond sword: name of player's tool is "&eEnderman Sword": set {_Waited} to...
  11. JustADev

    Solved Pex groups

    I'm wondering how to check if some argument is some group using PermissionsEX plugin. I tried : if arg 1 group is "Member": and also if group of arg 1 is "Member: With the first I'm getting Can't compare... error and with the second Can't understand this condition. So, where is my fault? Code...
  12. JustADev

    WHY U NO WORK?

    Code: on rightclick with diamond sword: name of player's tool is "&eIce Mage Sword": set {_Waited} to difference between {Freeze::%player%} and now if {_Waited} is less than 20 seconds: stop else: set {AbilityInUse} to "True" send...
  13. JustADev

    Solved Fixing <None>

    Question: How do I make it so that when I delete a variable like {Class::%player%} it doesnt say <none> is the variable?
  14. JustADev

    Solved Make skript do something after loop finishes

    How do I make it so that my skript Removes fire 3 seconds after it has been placed... Current Code: on rightclick with diamond sword: name of player's tool is "&eBlaziken Sword": set {_Waited} to difference between {FireTrail::%player%} and now if {_Waited} is less than 25...
  15. JustADev

    Solved Set maximum item amount in inventory

    How do I make it so that the maximum arrows in a person's inventory is 3, and that when It gives them an arrow, it doesnt go over the max 3 arrow limit? Current Code: every 3 seconds in "world": loop all players: if {Class::%loop-player%} is set: if player's inventory...
  16. JustADev

    Solved Change GUI Item on click

    command /settings: description: Settings Command trigger: wait 1 tick open chest with 1 row named "&nSettings Menu" to player wait 2 ticks format gui slot 0 of player with 1 paper named "&c&lJoin Messages" with lore "||&7Condition: &aTrue" to close...
  17. JustADev

    Solved Take off armor?

    How do I make a player unequip all of their armor they have on via Skript?
  18. JustADev

    Solved Variables on Damage Event

    Can I do this?: if {_It} is not set: set {_It} to a random element out of {_players::*} play raw sound "mob.enderdragon.growl" at player with pitch 1 volume 1 broadcast "&8[&bMinigame&8] &b%{_It}% &eis...
  19. JustADev

    What is wrong? It doesnt work

    Why doesnt this work? Code: command /setminigamelobby: description: Sets the minigame specified lobby permission: lobbyminigame.setlobby permission message: &c&l(!) You do not have permission to do this (!) trigger: if {_lobby} is set: delete {_lobby}...
  20. JustADev

    Reading .json file with skript

    Really important question. Is there any way that when a json file is read, it is turned into skript, then that skript is executed?