Skip to content
MSN Addons

URL Kick - Halt on Group

A TG007 community discussion started by blindmanwalks.

Discussion 7 posts
Page 1 of 1
Open
Topic #1218 · 7 published posts · 1,027 views

I need to work out a kick that will halt on a specific group address but kick all other urls.

The group address would be my own and would start out just like normal groups.msn.com/groupname and then allow anything after that. I suppose you would use a wild card but I just starting out and I do not understand how to complete this.

Would someone please help. biggrin.gif Thanks

 

John

on *:TEXT:groups.msn.com*:#:{ if (groupname iswm $1-) halt else goto :kick
:kick
 if ($nick isowner #) halt
 if ($nick isop #) halt
 /access # ADD DENY $address 600
 kick # $nick Advertise? Nope
}

That might work, not sure.

Edited Aug 17, 2004 11:25 PM by X-Fussy

Tried it and was unsuccessful. biggrin.gif Thanks for trying though.

 

on *:TEXT:*groups.msn.com*:#:{

if ($nick isowner #) halt

if ($nick isop #) halt

if (groupname !iswm $1-) {

/access # ADD DENY $address 600

kick # $nick Advertise? Nope

}

}

 

 

change the bit in RED to your group name

Edited Aug 17, 2004 11:33 PM by OZZY_10â„¢

My code does NOT have bugs. It just develops random features.

poster_stupid.gifdry.gif

btw, if you guys are having problems its because your not putting the group name in the right format. if you want it to halt on group names, you need the G_ at the begining of it.

cool thanks, got it done.. sorry for the late reply.. biggrin.gif

John

 

fixed.gif