Page 1 of 1

I keep seeing, "No O-lines for your host"

Posted: Mon Oct 22, 2007 11:57 pm
by canadianjeff
Any Help With This Issue Would Be Greatly Apreaciated.. Thanks

Code: Select all

/* For a list of oper flags, see doc/unreal32docs.html#operblock
 * [HIGHLY recommended to read]
 */

oper gofadmin {
        class clients;
        from {
                userhost :*:;
        };
        password "mypasswordhere";
        flags {
                netadmin;
                can_gkline;
                can_gzline;
                can_zline;
                can_restart;
                can_die;
                global;
        };
        swhois "Geeks On Fraser Network Admin";
        snomask frebWqFv;
};

Re: I keep seeing, "No O-lines for your host"

Posted: Tue Oct 23, 2007 12:06 am
by canadianjeff
Problem Solved YAY

Code: Select all

/* For a list of oper flags, see doc/unreal32docs.html#operblock
 * [HIGHLY recommended to read]
 */

oper gofadmin {
        class clients;
        from {
                userhost *@*;
        };
        password "mypasswordhere";
        flags {
                netadmin;
                can_gkline;
                can_gzline;
                can_zline;
                can_restart;
                can_die;
                global;
        };
        swhois "Geeks On Fraser Network Admin";
        snomask frebWqFv;
};