Command 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.
Mar 1, 2017
109
1
18
Hello,

I need help with command tab complete.

I would like to cancel every command autocomplete.

How can i do it?

Thanks c:
 
Try this:
code_language.skript:
command /commandhere [<text>]:
    trigger:
        if arg 1 is "[<tab>]":
            send " "
            stop
        if arg 1 is not set:
            send " "
            stop
 
Blocking command /? <tab>:
code_language.skript:
command /? [<text>]:
    trigger:
        if arg 1 is "[<tab>]":
            send " "
            stop
        if arg 1 is not set:
            send "&cYou can't enter this command!"
            stop
[doublepost=1495301123,1495301090][/doublepost]
I mean for every command
What?
[doublepost=1495301229][/doublepost]Not tested this, but you can try this:

code_language.skript:
on command:
    argument is "[<tab>]":
        send " "
Not tested
 
Blocking command /? <tab>:
code_language.skript:
command /? [<text>]:
    trigger:
        if arg 1 is "[<tab>]":
            send " "
            stop
        if arg 1 is not set:
            send "&cYou can't enter this command!"
            stop
[doublepost=1495301123,1495301090][/doublepost]
What?
[doublepost=1495301229][/doublepost]Not tested this, but you can try this:

code_language.skript:
on command:
    argument is "[<tab>]":
        send " "
Not tested
Is does not work :emoji_frowning:
 
Status
Not open for further replies.