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. C

    Hiring Skript Dev wanted

    Adding you on discord :)
  2. C

    1.13 needs to be addressed

    1.13 needs to be addressed, since I believe it is coming up in January. What will need to be re-done within Skript? https://minecraft.gamepedia.com/1.13
  3. C

    Solved MySQL spitting errors [SKELLETT]

    Turns out I was using the wrong syntax all long. This is the fix: set {_fetchplayerdata} to mysql result of query "SELECT * FROM `playerdata` WHERE UUID = '%{_uuid}%'" set {_playerdata::*} to mysql string "UUID" in {_fetchplayerdata}
  4. C

    Solved MySQL spitting errors [SKELLETT]

    So I am trying to grab data from my MySQL database when a player joins, but I keep getting errors. I have checked that everything is spelled correctly and the capitalization is correct. I have marked the line that is erroring out in the code below. I am using skellett for the MySQL support...
  5. C

    Speed up time script

    I am attempting to make a script that on execution, whether it's a command or gui click trigger, it will speed up time until it reaches the target time. For example if I wanted the world time to change to 6:00, I could run a command, lets say /examplecmd. It would then speed up time until it hit...
  6. C

    Looping all bungeecord players....

    I am attempting to kick a player if the player is connected to any of my servers on the bungee network, but it isn't working... I have tried messaging @LimeGlass, but no response, he is probably busy :P. I think I may just have the syntax wrong.... Skript Ver: Bensku dev28c Skellett: Latest...
  7. C

    Solved Timespan help

    I have set a variable to now and I am trying to create a difference trigger, but it isn't working? if difference between {_waited} and %{punished.currenttime::%player%}% is less than 4 hours: Error: '::%player%}%' is not a valid item data' Skript Ver: Latest Bensku Fork Addons: It shouldn't matter
  8. C

    Solved Right click event on villager not working?

    I am trying to create a tutorial NPC, and the rightclick on villager event is not working. Skript Version: Latest Bensku Version SkQuery : Latest 1.11 Lime Version SkUtilities: Latest SkRayFall: Latest Skellett: Latest I have found some posts about this issue on Benku's GitHub, but it was...
  9. C

    Solved List Variable Help

    Hello, I am trying to create an achievement where if a player breaks 10 cobble, it displays a message, and adds the player to a list variable. For some reason, the player can get the achievement multiple times... Can someone help me? I am new to list variables, sorry. on break: if...
  10. C

    Solved SkellettProxy Global Scripts

    Does anyone have global scripts set up for their server with SkellettProxy? I am trying to set it up, but the scripts are not being relayed appropriately, so I was hoping someone who already had it set up, could help me out. @LimeGlass tried to help me, but there was no luck. Could someone send...
  11. C

    Solved Set block to face the player

    Why is this code not working? I am trying to set the block as a chest, and make it face the player. set block at location of {_chest} to chest horizontally facing the player I keep getting this error. [18:53:32 ERROR]: a block can't be set to 'chest to horizontally face the player' because the...
  12. C

    Help outputting name of given item

    I am creating a /give command, and I am trying to make skript message the player with the name of the item that was given, but it keeps saying "<none>" Here is my code: command /invgive [<text>] [<text>] [<text>] [<text>]: executable by: players trigger: I LEFT THIS PART OF THE CODE...
  13. C

    Solved Status Effect Command

    HELP! So, it says that Skript cannot understand this condition... set {_effectamp} to argument 3 parsed as integer set {_effectlength} to argument 4 parsed as integer loop all players: apply swiftness {_effectamp} to loop-player for {_effectlength}...
  14. C

    Block Breaking Particles

    I am trying to create a particle effect with SkRayFall and Skript 2.2, but it isn't working, I even got it from the Effects list. What am I doing wrong? create 200 "blockdust" particles at (-2360, 139, -884) (with data of chest) for player bump! I have tried so many different ways of creating...
  15. C

    Death "Blood" Effect

    I am trying to create a script where on death of a living entity, it drops several rose red dye, pushes them away from the player, and despawns them, like on Mineplex. Here is a quick example. https://gyazo.com/07036eee75ea2f67f2ff64a309531e42 and...
  16. C

    Solved Explosions with Debris

    I need help creating a script that when an explosion occurs, it throws the blocks that were in the radius of the explosion, away from it, somewhat like a realistic explosion. I created a bit of code to help people visualize what I need help with, I know it doesn't work. Any help is appreciated...