Hey,

After some experimentation and some help from some other people I have ended up with this:

on @*:PART:#Nerd-Tech: {
if ($nick == chanb0t) { mode $chan +ooooo nerdco Gergij cdbrown |Scott| Es }
}
on 1:QUIT: {
if (chanb0t == $nick) && ($nick ison #Nerd-Tech) { mode #Nerd-Tech +ooooo nerdco Gergij cdbrown |Scott| Es }
}
on 1:JOIN:#: {
if ($readini(ntaccess.ini,nicks,$nick) == $nick) && ($chan == #Nerd-Tech) { mode $chan -o $nick }
else if (chanb0t == $nick) && ($chan == #Nerd-Tech) { mode $chan -ooooo nerdco Gergij cdbrown |Scott| Es }
}

Now where I have things like:
mode $chan -ooooo nerdco Gergij cdbrown |Scott| Es

I want to replace all the names with a reference to my auser list as all of us have the same custom hostmask... This will allow for more security:

My auser list looks like this:
10:nerdco!*@staff.nerdtech.ws
10:Es!*@staff.nerdtech.ws
10:Gergij!*@staff.nerdtech.ws
10:cdbrown!*@staff.nerdtech.ws
10:|Scott|!*@staff.nerdtech.ws

Nerd