discord

  • 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. skUnity Discord

    Discord Thread Custom Help Command

    I made this command a few days ago, but it seems to be very buggy and often not recognizing the key terms and often showing the else section even if there was a valid input. I am very new to Skript, so if anyone knows the fix, it would be greatly appreciated. on command "/help": if player...
  2. skUnity Discord

    Discord Thread How to make a particles spawn from player's tool/ chest rather than feet.

    set {_v} to vector from player to target entity set vector length of {_v} to 0.1 set {_loc} to location of player set y of {_v} to 5 loop (distance between {_loc} and target entity) / 0.1 times: draw 1 dust_color_transition using...
  3. skUnity Discord

    Discord Thread I need an upgrade gui

    I want to make a gui where player's have a few things they can upgrade like 3-5 times and gives them something. But I don't know how to make it, can someone help me? Posted by: koenderman from the skUnity Discord. View the thread on skUnity Discord here
  4. skUnity Discord

    Discord Thread Can't set location to a variable?

    Hello, I get this error executing my code: Line 5: {_loc} can only be set to one object, not more. It's strange, as exactly the same line of code worked outside of my function just fine. Do you know what's wrong with it? Here's my whole code. function safeTp(p: player, xmin: number, xmax...
  5. skUnity Discord

    Discord Thread Detecting item in inventory slot, regardless of amount

    How do you detect the item in an inventory slot, ignoring the quantity of the item? I have this example code to demonstrate the issue: on smelt: if the block's ore slot contains stone: send "Stone smelted!" to all players The item is only detected if there is 1 item. Any more...
  6. skUnity Discord

    Discord Thread will anticheats conflict with something like `make player damage loop-player by 5`

    will anticheats conflict with something like make player damage loop-player by 5 Posted by: tjj123456 from the skUnity Discord. View the thread on skUnity Discord here
  7. skUnity Discord

    Discord Thread Problem with FunkySk Song End Event

    Hi, I am trying to detect end of song in FunkySK, but the event is not triggered I guess. The song starts playing, but when the song stop, it does not broadcast "end". Any idea what is wrong? on inventory click: if current inventory of player = (metadata tag "hudba" of player)...
  8. skUnity Discord

    Discord Thread is the a way to sync variables with 1.8?

    I've tried Skungee, skript's database system and skript-db but skungee stops working after sabing a few variables, skript's database doens't work at all and skript-db requires 1.9 or later? Can you suggest me any way to sync variables between servers with dev37c (or dev36) I know, this is an...
  9. skUnity Discord

    Discord Thread Skript bug?

    I have a very particular case with one of the players on my server. there is a variable called {multiplier::*} For example, {multiplier::%player's uuid%} could be 2 Looping {multiplier::*} will return every uuid in the list. but for some reason one player is not included in this list, even...
  10. skUnity Discord

    Discord Thread rules

    title Posted by: nitayk from the skUnity Discord. View the thread on skUnity Discord here
  11. skUnity Discord

    Discord Thread First word in a text

    How can I get the first word of a text? Posted by: as3pt1c from the skUnity Discord. View the thread on skUnity Discord here
  12. skUnity Discord

    Discord Thread Read values from a list in YAML file

    Hi everybody! I have this YAML file (program.yml): `events: - title: First event date: 1st july 2023 - title: Second event date: 2nd july 2023 - title: Third event date: 3rd july 2023` And I try to read this YAML file with this code using Skript-YAML: `load yaml...
  13. skUnity Discord

    Discord Thread How to make the armour on the player, not in the inventory

    Posted by: qwipy_ from the skUnity Discord. View the thread on skUnity Discord here
  14. skUnity Discord

    Discord Thread Exploding Crops | Farming Skript

    Does anybody know how to replace the crops? I've tried so many things, like changing the breaking for the block, and have also tried several replacing techniques, nothing seems to work and i've also had issues where the crop breaks one by one, but still replaced. If it wasn't obvious, this is...
  15. skUnity Discord

    Discord Thread Summon armour stand with colored armour

    I have this line of code: spawn armor stand with purple dyed leather chestplate at location of player and it doesn't understand how to dye the armour, when I removed the dyed part it worked, so how do I make it spawned with dyed armour? Posted by: underrated_fishy from the skUnity Discord...
  16. skUnity Discord

    Discord Thread Item pickup owner check

    I'm trying to make a Skript where you can check the owner of a dropped item (when a block breaks, player dies, or player drops an item, the owner is set to that player) when an item is picked up. If the player is not the owner of that item, they cannot pick it up. The pick up event is able to...
  17. skUnity Discord

    Discord Thread optimize my script

    Is it possible to optimize my script even better? on script load: clear {itemMagiqueBoutique::*} set {_priceItem} to 1000 add iron shovel of unbreaking 1 and efficiency 10 and fortune 5 named "&6Pelle Étincelante" with lore "&7" and "&7gravant son chemin avec éclat, " and...
  18. skUnity Discord

    Discord Thread hello i need help with my shop system

    i want to simplify it and i want to know before i test it when i get to my computer in a few days will this work if i made a {@example} and put it in a function would i need to make multiple or can i do one so it puts teh whole value like function( player, stone, 600) but instead is...
  19. skUnity Discord

    Discord Thread How do I put '%' next to each other without doubling up?

    I don't want a space in between but if they are next to each other I get an error because Skript thinks I am doubling percentages set chat format to "%player's prefix%% player%: &r%colored message%" Posted by: cloudedrain from the skUnity Discord. View the thread on skUnity Discord here
  20. skUnity Discord

    Discord Thread Mob Max Health and Damage

    I am trying to make it so upon first load of end and each time the dragon is spawned in, it is given a higher max health and higher damage. I am not sure how to fix this as I am a very beginner with Skript. on spawn of enderdragon: set max health of enderdragon to 250 heal enderdragon...