Delete all Glines

These are old archives. They are kept for historic purposes only.
Post Reply
X-Trancer
Posts: 34
Joined: Mon Mar 08, 2004 5:24 am

Delete all Glines

Post by X-Trancer »

how do I delete all glines at one time?
psypher

Post 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.
X-Trancer
Posts: 34
Joined: Mon Mar 08, 2004 5:24 am

Post by X-Trancer »

ok thx ;)
aquanight
Official supporter
Posts: 862
Joined: Tue Mar 09, 2004 10:47 pm
Location: Boise, ID

Post 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.
AngryWolf
Posts: 554
Joined: Sat Mar 06, 2004 10:53 am
Location: Hungary
Contact:

Post 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.)
Post Reply