Recent content by Weber

  • 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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. W

    Solved Parse as time period

    Is this not supported? I seem to be completely unable to store a duration in a variable unless I state that duration explicitly in the skript; command /duration <string>: trigger: set {_old} to now wait 5 seconds set {_time} to arg 1 parsed as time period...
  2. W

    Solved MundoSK No player in tab complete event

    Apologies; The wrong version was added to the server. I've contacted the person and they should be fixing it soon, glad to know I'm not entirely inept :P Thank you for your help though!
  3. W

    Solved MundoSK No player in tab complete event

    A snippet from the start of the event: on tab complete: set {_args::*} to split "%event-string%" at " " set {_pl} to "%event-player%" This results in an error message saying: "There's no player/console in an on tab complete event event" followed by a reference to the "set {_pl} to...
  4. W

    Solved Tab completer disables all completions, no parsing errors

    Oh, I see, thank you. I don't own the server on which I use skript, I have ftp access to limited sections and am kind of stuck with what I have. I can request new plugins (though it may take a while, and is not preferable), but I wrote that mainly so people would try to help the issue itself...
  5. W

    Solved Tab completer disables all completions, no parsing errors

    My code: on tab completer for "/f": if argument at 1 is not set: add "list" to suggestions add "tp" to suggestions add "seen" to suggestions add "online" to suggestions add "add" to suggestions add "remove" to suggestions add "requests"...