I am currently trying to work some of the bugs out of my bot and one issue i am having is with moderator commands.
Whenever a mod enters a mod command it works as intended but if someone who is not a mod issues the command the command still goes through but then after going through says "Sorry, you must be a mod to use this command!"
I need it where if someone who is not modded issues the command the command does NOT go through instead it just displays "Sorry, you must be a mod to use this command!"
thanks for your help and here is my script
on *:TEXT:!social:#: {
if ($nick isop #) { msg # Make sure to follow on facebook and twitter to get announcments when Razreaper goes live.
https://www.facebook.com/pages/Razreaper/179770322170130?ref=hl and twitter at
https://twitter.com/Razreaper89 }
else { msg # Sorry, you must be a mod to use this command! }
}