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

    Solved Get amount of item from a slot

    Use item amount of %your item%
  2. Nikd0

    how to get clean minutes

    What about spliting? :D set {_a} to "52.47" #you can set it to whatever you'd like set {_b::*} to {_a} split at "." send "%{_b::1}%"
  3. Nikd0

    Homes GUI teleport

    I think it's because you are naming the item like this: "&c&lHOME". Because of that, it searches for "{LOC::HOME::%player%::&c&lHOME}" which does not exist, instead of "{LOC::HOME::%player%::HOME}" I think the easiest way is to remove the color code (= {HCOL::%player%::%arg 1%}) but if you want...
  4. Nikd0

    Homes GUI teleport

    Have you tried debugging? Have you tried upgrading/downgrading your Skript? Have you tried upgrading all of your addons?
  5. Nikd0

    send function not working

    Give us your Server version, Skript version, what addons you're using etc...
  6. Nikd0

    Solved I Want to make a gun cooldown please help

    on your event: if {cooldown::%player%} is set: send "You have to wait!" #optional, not needed stop #do your stuff set {cooldown::%player%} to true wait X seconds #your cooldown clear {cooldown::%player%} I think this is the easiest way to do this.
  7. Nikd0

    Simple Illegals Script

    Empty configuration section: Send us ur code, are you sure you've done everything right? Second error: Try replacing remove all of event-item from player with remove all event-item from playeror something like this...
  8. Nikd0

    Solved Is It Possible ? Help !

    Maybe:add {_drops::*} to ("%{gdroplanan}%" parsed as player)'s inventory Also I do not understand why are you creating another list when the same one already exists: set {gdroplanan} to random element out of {party.%{Ownerofparty.%attacker%}%.list::*} Maybe I did not understand you very well and...
  9. Nikd0

    clear drops from block

    You may not get your answer cause 1.8 server is outdated and no longer supported nowadays.
  10. Nikd0

    Homes GUI teleport

    Also I would NOT recommend you using "on first join" event, there may be problems with it. I would rather do something like this: variables: {maxhomes::%player%} = 0 or on join: if {maxhomes::%player%} is not set: set {maxhomes::%player%} to 0
  11. Nikd0

    Item in slot

    Give us the whole code... Are you sure the error is related to this specific line that you have given us? I think it can look like: set {_item} to slot 4 of current inventory of {_p} if name of {_item} contains "%{_t}%": #do your stuff
  12. Nikd0

    Solved Tab Complete with argument

    I'm using this: https://forums.skunity.com/resources/tab-completer.780/ It works perfectly: on load: # Doesn't have to be in a load event add "sk reload tabcompleter" to tab completions #this is the code from the tab-completer site
  13. Nikd0

    [Big Error] Not cause by users

    Check your addon version, what's your minecraft version? skript version? Have you tried searching google? Use the help request layout! https://forums.skunity.com/wiki/bbcode.237/archive
  14. Nikd0

    /server <server> on a non bungee server

    Please, how are we supposed to help you if we can't even read the code like this? command /server [<text>]: #here was some weird copied stuff going on :D trigger: #do your command stuff on tab completer for "server": add "world" to completions add "world_nether" to...
  15. Nikd0

    [Big Error] Not cause by users

    There is a problem with your addons. Try to read the text and do what you're said to do: Find which addon causes your problem (probably the last one added) and check if you're using right version etc...
  16. Nikd0

    Simple Illegals Script

    Surely, this will work, but every tick event lag server so much! I would rather use multiple events: on inventory click: if event-item is bedrock: remove all of event-item from player #etc... on drop: #do the same on pickup: #do the same Test it ;)
  17. Nikd0

    Solved How do I make this command

    command /find <player>: trigger: set {_w} to world of arg-1 send "%arg-1% is in world %{_w}%"
  18. Nikd0

    how to use variables on wait {gg} second

    Yes, you can. Skript doesn't mind, it's like when you use if player have instead of if player has :emoji_grin:
  19. Nikd0

    how to use variables on wait {gg} second

    You cannot add anything after the variable, but you can do this: set {_number} to YOUR-ARGUMENT set {_time} to "%{_number}% minutes" parsed as timespan wait {_time} Note that the argument must only be a number (it can be text, number or integer argument but player has to put a number in it).
  20. Nikd0

    send function not working

    You're missing trigger, that will never work. Maybe you wanted on command event?