So I got the perl IRC bot at vx13d.net and modified it a bit. What i need it is to store variables that i give it through privmsg.
I can do stuff like this.
}
if($input =~/!quit/) {
print $sock "QUIT : Bye!\r\n";
}
But what i need is something like; I say in irc !server irc.wtf.org. The bot then stores whatever comes after !server, ie irc.wtf.org in a variable called !server. What do i need to learn to be able to do this?