Page 1 of 1

Delete all Glines

Posted: Sun Mar 21, 2004 2:42 am
by X-Trancer
how do I delete all glines at one time?

Posted: Sun Mar 21, 2004 4:31 am
by psypher
Are you using mIRC?

Code: Select all

raw 223:*:gline - $+ $3
After you add that into your remotes, type only /gline. /stats g displays shuns/zlines, etc. Comment the code after you're done by putting a ; in from of raw.. this will prevent you from removing bans while innocently looking at the list.

Posted: Sun Mar 21, 2004 5:08 am
by X-Trancer
ok thx ;)

Posted: Sat Mar 27, 2004 1:56 am
by aquanight
Add to Aliases:

Code: Select all

/glineclear {
    enable #glineclear
    gline
}
Add to Remote:

Code: Select all

#glineclear off
raw 223:*:gline - $+ $3
raw *:End *:disable #glineclear
In the second raw, you can replace the * and regex with the appropriate numeric (and * for regex) if you find out for yourself what Unreal indicates the end of the gline list with.

In any case, with this you can delete all glines by typing /glineclear into any window.

Posted: Sat Mar 27, 2004 5:27 pm
by AngryWolf
In the case you are not using mIRC and 3rd party modules are OK for you, I suggest you to try my m_rmtkl module. With this you can remove all G:Lines with the /rmtkl G * command. Otherwise, as far as I know, a /gline -ALL is already on the coders' todo list. (Correct me, if I'm wrong.)