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

These are old archives. They are kept for historic purposes only.
Post Reply
canadianjeff
Posts: 6
Joined: Fri Jun 22, 2007 3:10 pm

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

Post 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;
};
canadianjeff
Posts: 6
Joined: Fri Jun 22, 2007 3:10 pm

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

Post 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;
};
Post Reply