Here is a quick one I knocked together 2 minutes ago. Its basic, and pages people even if they are kicked (nothing like rubbing someones face in it is there). If you want to make it better just google for mIRC script tutorials, there are plenty around.
on *:TEXT:*joined the game*:#fact.renegade {
if ($nick == FACTGod) {
msg $chan !page $2 Welcome to FACT Renegade servers
}
}
on *:TEXT:*left the game*:#fact.renegade {
if ($nick == FACTGod) {
msg $chan !page $2 Thank you for playing on FACT Renegade Servers
}
}
just change #fact.renegade to whatever IRC channel you are using, FACTGod to whatever your brenbot is called. and "Thank you....." to the message you want. (only tested the on join one though.)