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
A couple of issues.
So first off when I do commands like /smack or /slap, without specifying a user, it always smacks or slaps some user called sirmixalot. Not sure why or if it is supposed to work like that. I think that user was one of the first people to join my room, but I don't remember doing anything to him.
Second, the bot doesn't autobop for mods. In the config file there seems to be two instances of global.autobopformods. Not sure if it's supposed to be like that but I set them both to true, but doesn't work.
The text was updated successfully, but these errors were encountered:
TT doesn't allow autobopping anymore... so it's hardcoded out. This bot is good, but there are still a lot of issues with it. I will look at the /slap issue.
It needs this added if(!pText) return; in two spots to the commands.js file
{command: 'slap',callback: function(pUser,pText){if(!pText)return;FindByName(pText,function(sUser){if(sUser.length>0){sUser=sUser[0];Speak(sUser,'/me slaps {username}, on the ass.',SpeakingLevel.Misc);}});},requires: Requires.Moderator,hint: "Slap a ho",pm: true},{command: 'smack',callback: function(pUser,pText){if(!pText)return;FindByName(pText,function(sUser){if(sUser.length>0){sUser=sUser[0];Speak(sUser,'/me smacks {username}, in the FACE!',SpeakingLevel.Misc);}});},requires: Requires.Moderator,hint: "Smack a ho",pm: true},
A couple of issues.
So first off when I do commands like /smack or /slap, without specifying a user, it always smacks or slaps some user called sirmixalot. Not sure why or if it is supposed to work like that. I think that user was one of the first people to join my room, but I don't remember doing anything to him.
Second, the bot doesn't autobop for mods. In the config file there seems to be two instances of global.autobopformods. Not sure if it's supposed to be like that but I set them both to true, but doesn't work.
The text was updated successfully, but these errors were encountered: