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

    Need help with date handling in skript

    Hey, paste the code in the the right format, because i cant read anything in this, also i would suggest handling date with timespan - so instead of the last "text" arguemnt i would put "timespan" there.
  2. DanRub

    I need help with my keycard doors

    Hey just check if block under event-block is again iron door -> if yes check 2 blocks under, in your case: on right click on iron door: if block under event-block is iron door: set {_blockUnder} to block below block below event-block else: set {_blockUnder} to block...
  3. DanRub

    aspect of the end direction break

    Hey, you just need to use different syntax for this occasion.. (In your way you could also use pitch and yaw, but this is way easier) on right click: if player's held item is iron sword named "&9Aspect of the End": if {mana.player.%uuid of player%} >= 10: if block 5 in...
  4. DanRub

    Offering Skript services

    Hey there! I'm offering my services as a Skript developer for your Minecraft server. I have experience in creating custom scripts, from unique game modes to complex systems that enhance gameplay. Whether you need help with minigames, economy systems, or any other custom features. Feel free to...
  5. DanRub

    Hiring Looking for someone who has Strength SMP

    If you are willing to pay, then ye
  6. DanRub

    if command not working

    Well i replied, i dont know what else do you need..
  7. DanRub

    if command not working

    Hey, im assuming you are storing strings in the {var::wl.cmd::*}, so you can try checking it as strin also if it CONTAINS the list, in your case: on command: if {var::%player%} is set: if {var::wl.cmd::*} does not contain "%command%": cancel event send...
  8. DanRub

    Solved "" in "" help

    Hey, you need double quotes in the quotes, in your case you need this make console execute command "disguiseplayer %player% Player ""%{disg_name::%player%}%"" setSkin {disg_skin::%player%}"
  9. DanRub

    How to make this not lag? (leaderboard)

    ye well then split the variable in somewhere where you want and display the other half https://skripthub.net/docs/?id=909
  10. DanRub

    How to make this not lag? (leaderboard)

    If you want only top 2, just loop 2 times ig.. For the seconds thing - just split the time and display only what you want
  11. DanRub

    Reset map/world to original

    You dont have to download any plugin or smth, just go to your server folder, download the "world" folder or whatever is it called at your server, then delete it from SERVER folder not your downloaded and restart server - the server will automatically regenerate new folder for your world
  12. DanRub

    Help required with a skript

    Yes, if you have skbee you can use this https://skripthub.net/docs/?id=10526
  13. DanRub

    Help required with a skript

    just spawn him through skript effect https://skripthub.net/docs/?id=1112
  14. DanRub

    Solved Per world warps

    The solution: command /warpset <text>: permission: warp.setwarp trigger: set {warp::%arg-1%::%world of player%} to player's location send "New warp %arg-1% created at player's location %player's location%!" to player command /warpdel <text>: permission: warp.delwarp...
  15. DanRub

    Shoot projectile at target block skript

    Thats strange, it worked for me, make sure you have the coords right, because its really important
  16. DanRub

    give item with item model to player

    Hey, i think you are looking for custom model data, try this: https://skripthub.net/docs/?id=4185
  17. DanRub

    Solved Per world warps

    What do you mean, the variable stores world in itself, it shouldnt be any problem
  18. DanRub

    Solved detect item with display name

    What plugin are you using, what custom characters are we talking about, do you maybe have a custom model data you can use, if you want to get help you need to give more information or you can look at this if it helps https://skripthub.net/docs/?id=2061
  19. DanRub

    Solved Per world warps

    Hey, ive fixed your code: command /warpset <text>: permission: warp.setwarp trigger: set {warp::%arg-1%} to player's location send "New warp %arg-1% created at player's location %player's location%!" to player command /warpdel <text>: permission: warp.delwarp...
  20. DanRub

    Solved Trying to delete a list in a list variable

    I dont really understand what kind of party has only 1 player in it, whats the purpose of it? For the issue - I mean the party is the list {party::%player%::*} if you delete the list (party) -> there will be no list (party). I would probably need to understand what exactly you are trying to...