didn't think about that...
the answer to your question is most likely no. Guess the best way to do this, is get users to download my modified copy of mirc and use a mirc script to close the lobby channel.
My server forces users to join a "lobby" when they connect to my server and channel. Is there a way to have the person part the lobby using tcl on my windrop?
oops...this one doesn't ban at all. gives pm to user, but no ban onjoin nor with multiple /hops. Notice you cut out this portion of code: utimer $banafter(s) [list incr rejoins($n) -1] if {[incr rejoins($n)] >= $banafter(j)} { puthelp "MODE $chan +b *!*@[lindex [split $uhost @] 1]" is this...
Script works, but only if you do a /hop in the channel. It does not ban when the user initially joins the channel. That's what I would like it to do. Here's the code: bind join - * foo proc foo {n u h c} { puthelp "whois $n" } bind raw - 311 got311 ;# first WHOIS reply bind raw - 307 got30...
Thanks for your quick comments Sir_Fz. And Alchera, can you give me an example of your suggestion? Sorry I'm a newbie here. Question for Sir_Fz: Will this code kick/ban for 5 mins. for each join? As this will prevent auto-join for non-reg. users. So the flow should be as follows: 1st. join - kick/ba...
This bit of code to check if a user's nick is registered works great (a big thanks go out to Demond for all their help:) bind join - * foo proc foo {n u h c} { puthelp "whois $n" } bind raw - 311 got311 ;# first WHOIS reply bind raw - 307 got307 ;# nick has identified (registered) bind raw...
Next, I would like to add a 5 min. ban for non-reg. users (after they get the pm, of course). (3) attempts to join in 24 hours without registering gets a permanent ban.
I've officially changed my nick to bonehead...lol works FINE when u re-start...re-hash don't do a darn thing. ur my hero :) Thanks so much for your help. Sorry I took so long to see the light. Now...I'd like to dress up the pm output a bit. What is an easy way (a.k.a. a way I'll understand) to add c...
commented scripts in the .conf file, rehashed and same. weird any other ideas? another person provided this code, which does the same thing: #bind join - * foo #proc foo {n u h c} { puthelp "whois $n" } #bind raw - 307 got307 ;# nick has identified (registered) #bind raw - 318 got318 ;# En...