You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Commands tab there is the ability to add either moderators etc but is there a way to implement the same thing for kick where it can pull users from kick to be able to only use those actions you assign to said user.
Ex:
Command - !Memes
User - SendMemesPlox
Action:
Trigger - !memes
Sub Action - Play Sound file from folder.
The text was updated successfully, but these errors were encountered:
The only way to limit access to a command to a few specific users is to implement this in your action and check if the user argument matches someone in your list (with a bit of C# code maybe).
I might have something in mind for this.
The only way to limit access to a command to a few specific users is to implement this in your action and check if the user argument matches someone in your list (with a bit of C# code maybe). I might have something in mind for this.
@Sehelitar@Jyojibh just add an "if user equals [ignore case] yourname do nothing then continue else do nothing then break"
if you want several users to be able to use it, duplicate the above as much as you want but replace the last part (break) with continue except for the second one, it'll check if the username of the command caller is in that if cascade and break action on the last if not
that ought to be enough for whitelisting users on a command triggered action
In the Commands tab there is the ability to add either moderators etc but is there a way to implement the same thing for kick where it can pull users from kick to be able to only use those actions you assign to said user.
Ex:
Command - !Memes
User - SendMemesPlox
Action:
Trigger - !memes
Sub Action - Play Sound file from folder.
The text was updated successfully, but these errors were encountered: