skript help

  • 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. IViddyy

    Ban Hammer

    Hi im trying to make a ban hammer with Skript.This is all i have for now command /banhammer: trigger: give player unbreakable iron axe named "&6&lBan Hammer" with lore "&4&lDa Ban Hammer" on right click with iron axe:
  2. IViddyy

    Solved Enchant and Hide All

    Hi im just confused on how to enchant an item in skript.I know how to enchant a tool but i cant enchant a diamond etc. can someone help? I also want to know how to hide all the lore etc.
  3. IViddyy

    Solved Polls Skript With GUI

    Hi im trying to make a poll skript with a GUI but i have no idea how to do that so i need some help.Thanks! Quick Edit: I need it so i can also edit the answers
  4. IViddyy

    Solved Arguments

    Hi im new to skript and im trying to make a skript that kills the player by the amount u entered (like if u entered 5 it insta kills the player 5 times). Edit: its for insta respawn.
  5. W

    Remove placed block after x seconds in a specific region or a world

    Hello, I'm currently making an boxpvp server and I need help with this script: on place: wait 10 minutes set block at event-location to air Is it possible to make the script only work in a specific region or a specific world of course a region would be better
  6. S

    Help with getting coins on death

    Hello, I'm having trouble making it so you can get coins on death. The people in my server have to die from the void, so I can't really do the simple method and just do normal player death. Here is my not-working code right now: on damage: set {lastattacker::%uuid of victim%} to attacker's...
  7. V

    Create citizens with skript?

    How do I create citizens with skript? I am making a horror game and I want that a random npc spawns in front of them and 2 seconds later despawns, and with despawn I mean like completely removed. I can't find ways to do that anywhere in the docs and all the addons are outdated. I'm on 1.18.1 btw.
  8. N

    Hello I Need To Complete This Skript

    command /randomtp: trigger: set {_x} to random number between -2999999 and 2999999 set {_z} to random number between -2999999 and 2999999 set {_loc} to highest block at location ({_x}, 0, {_z}) set block at {_loc} to stone teleport player to block 0.5...
  9. A

    Shoot arrow from location to player

    Hey! So the goal for this skript is to have this ability type item that allows you to create a helper that will stand still and shoot arrows towards the victim Skript: on damage: if name of tool of attacker is "&c&lArcher Ability": create a citizen named "&c&l%attacker%&c&l's...
  10. Danime4anime

    How to add multiverse teleport in skript?

    I don't know if Multiverse is available to add in skript. Here is my script: command /lobby: trigger: command: mvtp @s world teleport player to location(0, 15, 0, world) It's basically when the player issues the command /lobby, they are teleported to the world "world"...
  11. L

    Solved random block in xyz to xyz?

    I want make a random block in xyz to xyz like this
  12. M

    Solved List variable to placeholder

    Skript Version: 2.2-dev36 Minecraft Version: 1.8.9 Addons i have that could affect this: placeholder-skript, ersatz, skellet on placeholderapi placeholder request for the prefix "alive": if the identifier is "player": loop all players: if player is in {teamcount::*}: add 1...
  13. L

    Crafting GUI

    Category: Skript/Request Suggested name: Custom Crafting Spigot/Skript Version: 1.16.5 What I want: Hi, I'm looking for a skript that has a custom crafting GUI to use instead of the vanilla GUI that I can also add vanilla and custom crafting recipes too. I don't need actual recipes I just...
  14. S

    I am trying to make a /compress gui

    Problem: My functions dosnt work but i dont get any errors so if anyone could help me it would really make me happy :) Code: function compresssel(p: player, i: itemtype, i2: itemtype, done: text): set {_amount} to amount of {_i} in {_p}'s inventory open chest inventory with 5 rows named...
  15. K

    How to Multiply mob dammage

    Currently me and my friend are developing a server and i'm in charge of the pve realm how do i make certain mobs deal more damage then normal minecraft.
  16. C

    How do you make a falling block from the block your looking at?

    This is what I have so far: command /fall: trigger: spawn falling iron block 5 meters above and 2 meter horizontally in front of the player When I change iron block to targeted block I get an error. Can anyone help me?
  17. K

    Solved How do I check the online players forever

    so i cant update the online players on my scoreboard heres my script: on join: scoreboard(player) loop all players in world "world": function scoreboard(P: player): set title of {_P}'s scoreboard to "&E&LDuckAura" set line 3 of {_P}'s scoreboard to "&eRank: &a"...
  18. DKPeak

    Help with SkBee & Tab complete

    Hi I'm not sure whether i have mis read something or what. But when i try to use "on tab complete:" with SkBee 1.10.2, skript doesnt recognize/understand the event. Im on paper 1.8.8 if it changes anything. Thanks bump
  19. K

    Solved Check for specific minecraft world time?

    Hello I am planning to reset the resource world on my server using skript and I want the resource world to have the same time as all my other worlds or let's say specific world, but I don't know what is the correct code for check_time? Here is my code so far every 72000 ticks: make console...
  20. R

    Increase Jump Boost Every Minute

    Hello Everyone, I’m having some issues with a plug-in I want to make so basically what I’m trying to do is when I run command /jump it gives all players jump boost 1, waits 1 min then clears the effect, gives jump 2, and then sends a message letting us know that jump boost has increased. I want...