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

    Solved Error with regex

    Uh, you're right! I hadn't seen "Expression" in the docs
  2. FinalPlayer024

    Solved Error with regex

    How does "Regex replace" work? I've already tried it using on chat: regex replace "\d{1,3}" with "test" in message #This regex should replace all the numbers {wrote 1, 2 or 3 times} in message with "test" But all I have is "Can't understand this condition/effect ecc..."...
  3. FinalPlayer024

    Unstable Build Help

    2.2-dev27 is the last one for 1.8 But I'm using 2.2-dev25
  4. FinalPlayer024

    Solved Loop help

    I'm not sure, but I think he has problems with the repetition of that message He's online with a 2nd player, and the message repeats itself 2 times, if he was online with a 5th player, message would repeat itself 5 times
  5. FinalPlayer024

    Strange click event

    Uh okay, hypothesis failed :P @ShaneBee is right, I didn't notice the "clicked water" part
  6. FinalPlayer024

    Strange click event

    I don't know if on rightclick with a bottle conflicts with THIS EVENT, maybe try to use it like on bucket fill: give cake to player It's a hypothesis, I could be wrong
  7. FinalPlayer024

    Sort of "DeathNote" in Skript?

    Mhh, I don't think it's what I need. I wanted to get a book, write something on it (like a player's name), then the scripts return what I typed
  8. FinalPlayer024

    Sort of "DeathNote" in Skript?

    Category: Books - A sort of DeathNote maybe? Suggested name: Noname What I want: (This link) but in Skript: You write something in a book, and the text you write will be stored in a variable like {_textFromBook}, to use later Ideas for commands: command /getBook that gives you the book...
  9. FinalPlayer024

    Help with YML

    Skript Code (only "on load" event) It all works fine, but I wanted to add some "spacers", I tried "write file" but it didn't work, I also tried set "Staff-Bot. " to " " in yaml file "plugins/Skript/scripts/Staff-Bot/config.yml" , it worked but I don't really like how it is written in the...
  10. FinalPlayer024

    Save player's inventory, and then return it - help!

    command /showinv: trigger: restore inventory of executor from {items::%executor%} command /saveinv: trigger: set {items::%executor%} to executor's serialized inventory Try this
  11. FinalPlayer024

    Custom Player Heads In GUI

    You forgot a " format gui slot 0 of player with player's skull with custom nbt "%{_nbt}%"
  12. FinalPlayer024

    Teleport Effects

    Hahahahah :P
  13. FinalPlayer024

    Make player auto-type in chat

    I think you could use Json.sk json("%player%", "Some &7colored &ftest.||sgt:/msg")
  14. FinalPlayer024

    Solved list variable contains

    I think 'contains' is buggy (?) in Skript. Try using This function function contains(list: objects, testo: object) :: boolean: loop {mutes::*}: if loop-value is {_testo}: return true return false on chat: if contains({mutes::*}, "%player%") is true: cancel...
  15. FinalPlayer024

    Solved Help with evaluating GUI

    Skript: 2.2-dev25, Spigot 1.8.8 Everything works fine, if I execute the command /calcola 2+2, it returns "4". But if I try to evaluate 2+2 by clicking "2", "+", "2" in the GUI, the variable returns <none>. Here is the code, you can take how much time you need, no problems! #!Options options...
  16. FinalPlayer024

    Update notifications

    "check for new version" string is already set to false, but it anyway sends "A new version is available ecc ecc" to all players with "skript.admin"
  17. FinalPlayer024

    Update notifications

    Is it possible to disable Skript update notifications? I know it's possible by removing the "skript.admin" permission, but it also grant admin commands..
  18. FinalPlayer024

    Solved Help

    command /test: trigger: set block at location of block 3 above player to end portal block ??
  19. FinalPlayer024

    Solved Increase Damage

    http://bensku.github.io/Skript/effects.html#EffHealth Try this
  20. FinalPlayer024

    Solved Tempban message

    Skript version: 2.2-dev25 Server: Spigot 1.8.8 The part 'Sei temp-bannato per "%difference between {tempo::%player%} and {_t}%" ' is not working, it sends <none>. I want this to send the "Remaining time" Skript Version: 2.2-dev25 Skript Author: Bensku Minecraft Version: Spigot-1.8.8 --- Full...