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.

notice script from mirc to tcl

Old posts that have not been replied to for several years.
Locked
s
stevegarbz
Op
Posts: 104
Joined: Sat Dec 04, 2004 7:25 pm

notice script from mirc to tcl

Post by stevegarbz »

on *:NOTICE:*:#compLexity: { if ($nick !isop $chan) { mode $chan +b $wildsite | kick $chan $nick Do not notice the channel } }
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

There are channel administration scripts in our tcl archive that will do the job you require.

Click Me!
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
s
stevegarbz
Op
Posts: 104
Joined: Sat Dec 04, 2004 7:25 pm

Post by stevegarbz »

They are also longer scripts than that. I am looking for a short one.
User avatar
avilon
Halfop
Posts: 64
Joined: Tue Jul 13, 2004 6:58 am
Location: Germany

Post by avilon »

short hm?

Code: Select all

/mode #channel +N
s
stevegarbz
Op
Posts: 104
Joined: Sat Dec 04, 2004 7:25 pm

Post by stevegarbz »

They don't have modes like that on GameSurge.
s
stevegarbz
Op
Posts: 104
Joined: Sat Dec 04, 2004 7:25 pm

Post by stevegarbz »

Anyone :\
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

You have been told where to find scripts if you dont like those maybe you should learn TCL and write your own scripts.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Code: Select all

bind notc - * notice:ban

proc notice:ban {nick uhost hand text dest} {
  if {![string equal -length 1 # $dest]} {
    return
  }
  if {[botisop $dest]} {
    putquick "KICK $dest $nick :Do not notice the channel!" -next
    pushmode $dest +b *!*@[lindex [split $uhost @] 1]
  }
}
Should do what you wanted.
Once the game is over, the king and the pawn go back in the same box.
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

someone could make a fortune here converting lame mirc code to tcl :mrgreen: if any of these dweebs had any money, that is.........
:wink:
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

Sorry for the delayed reply was a bit busy. 'caesar' tried todo good but missed a few things out, it should be like this:

Code: Select all

bind notc - "*" notice:ban

proc notice:ban {nick uhost hand text dest} {
  if {[string equal -nocase "#complexity" $dest] && ![isop $nick $dest] && [botisop $dest]} {
    putquick "MODE $dest +b *!*@[lindex [split $uhost @] 1]" -next
    putquick "KICK $dest $nick :Do not notice the channel!" -next
  }
}
I used todo alot of mIRC scripting in my earlier days, but kind of gave it up because its only for kiddies now, I guess. Since mIRC Scripting RIPPING is famous all over the internet, heh.
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

whoops! :oops: forgot to add a 'channel check thing' and the 'isop' :roll:
Once the game is over, the king and the pawn go back in the same box.
Locked