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

    Addon skript-db

    I have a question to the author of this plugin @btk5h Will your plugin work with 1.13 skript as well?
  2. pepper82

    How to clear all potion effects?

    Hi all, I tried many things but it just won't work. my latest try: loop all active potions on {_p}: broadcast loop-value remove loop-value from {_p} also tried: remove all potion effects from {_p} p = player variable. It broadcasts all the active potion effects but it...
  3. pepper82

    How to get player in "on vehicle enter" event?

    Hi there, how to get the player in an "on vehicle enter" event?
  4. pepper82

    How to check if hit entity is an itemframe?

    And without mundosk? Also where does it check for projectile / arrow in your code?
  5. pepper82

    How to check if hit entity is an itemframe?

    Hi all, how would I check if the hit entity (on projectile hit) is an itemframe? Any way to do this? And how do I set a block at a specific location to an itemframe?
  6. pepper82

    How to set the nbt of a placed block?

    Here is the error: https://hastebin.com/pazematiqi.bash And yes I got that version! SkStuff] Loading SkStuff v1.6.4.1-fork-1.12
  7. pepper82

    How to set the nbt of a placed block?

    Hi all, I am trying to set the nbt of a placed block but it won't work. I found this thread but the solution is not working for me (gives me internal error). I am on 1.12.2. Any ideas? command /hed [<text>]: trigger: if arg-1 is "test": set targeted block to...
  8. pepper82

    Addon Skellett - The beast addon!

    Hi @LimeGlass I am using skellett and its block regenerator. But there seems to be a bug: https://hastebin.com/cicobunote.md This is spammed in my server console. Any idea whats going on?
  9. pepper82

    Check attacker in "on damage" event

    Thanks. But I had to write it like this: if victim is a skeleton or a zombie or a creeper:
  10. pepper82

    Check attacker in "on damage" event

    Hi all, I am unable to get this to work: on damage: if attacker is a player: if victim is a skeleton, creeper OR zombie: broadcast "a beast" It only triggers for skeleton but ignores Creeper and Zombies. Why? How to fix?
  11. pepper82

    How to use a "tab" in text / string / chat?

    Ok, thanks all, it seems to be not possible to achieve this in script. Screenshot what I mean: https://i.imgur.com/ghvKZsb.png
  12. pepper82

    How to use a "tab" in text / string / chat?

    I mean like the tab functionality in a word document if you know what I mean. Like forming a table in the chat. NAME --- FIRSTNAME --- COUNTRY Spector Anton Germany Havaly Ryke Sweden etc. I don't think this will work out with "spaces".
  13. pepper82

    How to use a "tab" in text / string / chat?

    Very useful answer .... not
  14. pepper82

    How to use a "tab" in text / string / chat?

    Hi all, I would like to know if it is possible to use tab in a message? Like: send "Hey there!<tab>How are you?"
  15. pepper82

    Changing a variable item's display name changes original item, too ...

    Thank you guys! See this: https://github.com/SkriptLang/Skript/issues/1320#issuecomment-398055258
  16. pepper82

    Changing a variable item's display name changes original item, too ...

    Hi all, I have this command: command /looptest: trigger: set {_temp} to player's tool set {_name} to {_temp}'s display name replace all "%%player%%" with "%player%" in {_name} set display name of {_temp} to {_name} give player {_temp} This will also...
  17. pepper82

    skrayfall issue: adding player to a bossbar results in NPE. Any idea?

    enableFastScoreBoards: false Is already set :-(
  18. pepper82

    skrayfall issue: adding player to a bossbar results in NPE. Any idea?

    Hey all, I get a NPE when trying to add a player to an existing bossbar (skrayfall): https://hastebin.com/keponijifu.md The script: create bossbar titled "TEST" and id "test" for {afew::players::*} with value 100 with colors pink with style solid add player to bossbar "test" I am unable to...
  19. pepper82

    Addon Skellett - The beast addon!

    Where can I find examples on how to use skellett's bossbar features? Can I create id based bossbars, add/remove players and delete the bossbar again?
  20. pepper82

    Function in separate file working?

    Hi all, I wonder if I can put all my functions into functions.sk and then call these functions from other script files like myscript.sk ? So I would have all functions collected in the functions.sk. Will this work?