Tab complete

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

youri kelderman

New Member
Feb 25, 2020
5
0
0
19
Okay so I want tab complete to only show commands that I want, in my spigot.yml I set auto-tabcomplete to -1 to disable all of them, but how do I add certain commands to it that will show up? Like if you want /home it will show up in tab complete but /pl not
 
I haven't tried it yet but you could see if this works? (Requires MundoSK)

Code:
on tab complete:
  set {_args::*} to split event-string at " "
  if {_args::1} is "/":
    delete completions
    add "Whatever you want" to completions
 
Status
Not open for further replies.