Is there anyone to make it so a certain user cant use a command?

I have a command that I want most people to use except for a select few.

Is there any code I can add so it doesn’t trigger when they type !command

Without using regular only cause you need to add them individually

You can restrict a command based on userlevel, or use regulars to control who does and doesn’t have access to commands.

1 Like

If you want to do it without the use of regulars your best bet would be this:

$(eval List=[`User1`,`User2`,`UserX`…];List.includes(`$(user)`.toLowerCase())?`Response`:` `)

Put all the usernames in lowercase.

If you need any further elaboration please feel free to ask.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.