Mine didn't work until i changed:
NPC Code:
if (texttype == "irc" && textoption == "privmsg" && textlines[0] == "IRCBot" && textlines[1] == "!eventsbotlogin") {
to
NPC Code:
if (texttype == "irc" && textoption == "privmsg" && textlines[0] == "IRCBot" && textlines[2] == "!eventsbotlogin") {
(textlines[1] to textlines[2])
EDIT:
For Script ID: and Params: in the event admin window, how is that used exactly?
(I understand the script id part, but how do you access the params?)