Remove every command except one

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

bebeli555

Member
Feb 6, 2020
28
0
0
25
So anyone know how to make like a skript that remove every command from the game except one like this but this doesnt work:


Code:
on command:
    if command equals "/help":
        #Do stuff
    else:
        cancel event
        send "You can only use /help command!"
 
You should definetly be careful of skripts like that, if you mess something up, removing / reloading anything will be really difficult, as that code would also be blocking console commands.

But this is what I came up with
Code:
on command:
    if command sender is a player:
        if command contains "help":
            send "it worked"
        else:
            cancel event
            send "You can only use /help command!"
 
You should definetly be careful of skripts like that, if you mess something up, removing / reloading anything will be really difficult, as that code would also be blocking console commands.

But this is what I came up with
Code:
on command:
    if command sender is a player:
        if command contains "help":
            send "it worked"
        else:
            cancel event
            send "You can only use /help command!"
That works thanks
 
Status
Not open for further replies.