This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Support & discussion of released scripts, and announcements of new releases.
-
SpiKe^^
- Owner
- Posts: 831
- Joined: Fri May 12, 2006 10:20 pm
- Location: Tennessee, USA
-
Contact:
Post
by SpiKe^^ »
search and find this line (twice)...
Code: Select all
set banmask "*!*[string trimleft [string range $bhost [string first "!" $bhost] end] ?^~-_+?]"
and make them more like...
Code: Select all
set banmask "*!*@[lindex [split $bhost @] 1]"
-
m4s
- Halfop
- Posts: 97
- Joined: Mon Jan 30, 2017 3:24 pm
Post
by m4s »
Super, thank you it works!
One more short question!
If I want to set this ban mask *nick*!*@* how would I have modified the lines?
-
SpiKe^^
- Owner
- Posts: 831
- Joined: Fri May 12, 2006 10:20 pm
- Location: Tennessee, USA
-
Contact:
Post
by SpiKe^^ »
NOTE: nick is not part of $bhost ($bhost = user@host)
-
m4s
- Halfop
- Posts: 97
- Joined: Mon Jan 30, 2017 3:24 pm
Post
by m4s »
Thank You again!