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

    how to use variables on wait {gg} second

    Use timespan variable or argument and/or parsing: /mute [<player>] [<timespan>] [<text>]: You need to write "3 minutes". But then you can use: set {_time} to arg-2 wait {_time} If you want to use "m" for minutes or "s" for seconds, I can send you something more complicated into PM.
  2. Nikd0

    TuSKe subtract/add to variables

    The easiest way may be this: create a gui slot 25 of arg-2 with redstone block named "&aRemove 64" to execute console command "test %arg-2%" command /test [<offline player>]: executable by: console trigger: remove 64 from {buy.%arg-1%} send "Done." to arg-1
  3. Nikd0

    on money transfer

    on command "/pay": set {_vars} to arguments set {_variables::*} to {_vars} split at " " set {_money} to placeholder "YOUR_MONEY_PLACEHOLDER" from player set {_paid} to {_variables::2} parsed as number #if you're using /pay <player> <amount> if size of {_variables::*} != 2...
  4. Nikd0

    on money transfer

    There is a question... if you're using a third party plugin it should have already been done and you do not need to worry about it. If you have your own plugin in Skript, try to edit the /pay command: if {yourmoneyvariable::%player%} < arg-x: send "You don't have enough money!" stop I've...
  5. Nikd0

    save variable to particular item,block HOW

    on place: set event-block to {dontbreak} on break: if event-block is equal to {dontbreak}: cancel event I did not test it, however there it should work
  6. Nikd0

    How to turn text into a usable alias

    set {_block} to "stone" parsed as material set block at {_l} to {_block} Is that what you want?
  7. Nikd0

    Why "text from url" is not working?

    Someone has been already searching this problem: https://forums.skunity.com/threads/text-from-url.3968/ You can try using skUtilities version: https://docs.skunity.com/syntax/search/id:1672
  8. Nikd0

    How to clear entity instead of kill (from list)?

    What do you mean by "removing entity"? In minecraft, if you want to remove an entity there is no other way then killing it.
  9. Nikd0

    block limit?

    I was not able to find solution for the "per chunk" but you may be able to use "in radius of 16 blocks": on place of diamond block: loop all blocks in radius 16 of event-block: if loop-block is diamond block: add loop-block to {blockloop::*} if size of {blockloop::*}...
  10. Nikd0

    Shoot arrow at specific coordinate

    I'm not an expert and I'm not sure but it should be because of worldguard. Are you sure u are using the right version of world guard? There are multiple versions and if you have outdated server you cannot use the latest plugin version. If you're not sure which version to download, you can find...
  11. Nikd0

    Shoot arrow at specific coordinate

    Try set {_loc} to location at -19, 14, -49 in world "world" shoot arrow from [location] {_loc} at speed 4.5 If it's still not working, try setting the speed into an integer
  12. Nikd0

    how to make commands for console only

    I would rather use the solution of Stefqnutz because you can easily change the message there. However your code is also right ;)
  13. Nikd0

    Solved Current Health Of Mob

    You need to update the name on damage: on damage: if victim is a cow: set name of victim to "&cCow &8[&c%victim's health &8/ &c%victim's max health%&8]"
  14. Nikd0

    Solved Check if arena is full

    Add line 26:add player to {arenaplayers.%{arena.%player%}%::*} And add line 34: remove player from {arenaplayers.%{arena.%player%}%::*} Then you can check number of players: if size of {arenaplayers.%arg-2%::*} >= 2: send "&cThe arena is full!" stop
  15. Nikd0

    Completely insane glitch

    Any errors? Are you sure both of them are integers?
  16. Nikd0

    plz help me plz

    Send us your code, use the help request format: https://forums.skunity.com/wiki/help-request-layout/ We can help you but we won't remake you a paid plugin!
  17. Nikd0

    Boss bar

    For bossbars, you have to install addon called SkRayFall (can be found in the docs! https://docs.skunity.com/syntax/search/bossbar) Also, you are creating a new command! /nick will probably not work now, because you overwrote it. To make it work, you should use "on command" event. Then, why are...
  18. Nikd0

    Solved need help with npc create

    condition npc spawn? what are you talking 'bout? you've got to put it into a command or event! command /test: #possible permissions, aliases, etc... trigger: spawn npc with name "test" at location of player send "done!" #just to assure you it's working
  19. Nikd0

    Nick And Vanish Action Bar

    Do you have all required addons? I think Skellett is needed, maybe Ersatz
  20. Nikd0

    Nick And Vanish Action Bar

    I'm glad I could help you at least a bit. :)