ikkop.tcl

Moderator: bruhv

Post Reply
ikkebra
Forum N00b
Forum N00b
Posts: 5
Joined: Thu Jun 08, 2006 5:10 pm
Contact:

ikkop.tcl

Post by ikkebra »

found this jewel while deleting some ancient archives of files

Code: Select all

###########################################
#         ikkop.tcl by bruhv-ahh          #
###########################################
# ops ikk in all channels the bot has ops #
###########################################
# a bruhv-ahh.com 'on demand' creation :) #
###########################################

# What channels should this work on?
# "" is for all channels
set ikkchan ""

bind join - * ikkjoin

proc ikkjoin {nick uhost hand chan} {
 global ikkchan botnick
 if {$nick == $botnick} {return 0}
 if {$ikkchan == "" && [botisop $chan]} {
	if {[regexp "ikk" $nick] ==1} {
	putserv "MODE $chan +o $nick"
	}
  return 0
 }
 set chan [string tolower $chan]
 foreach i [string tolower $ikkchan] {
  if {$i == $chan && [botisop $chan]} {
	putserv "MODE $chan +o $nick"
   return 0
  }
 }
}

putlog "\00310* ikkop.tcl by bruhv-ahh loaded\003"
bruhv
Site Admin
Site Admin
Posts: 59
Joined: Thu Jun 08, 2006 11:55 am
Location: Afghanistan
Contact:

Post by bruhv »

a bruhv-ahh.com 'on demand' creation
;)

actually, that's a terrible bit of tcl, ignoring the fact it ops by part of your nick, if you actually set some channels it doesn't even check the nick, lmao

this should be more like it

Code: Select all

###########################################
#         ikkop.tcl by bruhv-ahh          #
###########################################
# ops ikk in all channels the bot has ops #
###########################################
# a bruhv-ahh.com 'on demand' creation :) #
###########################################

# What channels should this work on?
# "" is for all channels
set ikkchan ""

bind join - * ikkjoin

proc ikkjoin {nick uhost hand chan} {
  global ikkchan botnick
  if {$nick == $botnick} {return 0}
  if {[regexp "ikk" $nick] ==1} {
    if {$ikkchan == "" && [botisop $chan]} {
      putserv "MODE $chan +o $nick"
      return 0
    }
    set chan [string tolower $chan]
    foreach i [string tolower $ikkchan] {
      if {$i == $chan && [botisop $chan]} {
        putserv "MODE $chan +o $nick"
        return 0
      }
    }
  }
}

putlog "* ikkop.tcl by bruhv-ahh loaded"
time soon to bring orac back from the dead tbh
Image
drug free since 11:28pm 26/3/06 :D

www.robnicklin.com

You're so fucking special, I wish I was special
Asmodain
Forum N00b
Forum N00b
Posts: 31
Joined: Thu Jun 08, 2006 1:57 pm
Location: Funland
Contact:

Post by Asmodain »

bruhv wrote:time soon to bring orac back from the dead tbh
Woot \o/
Post Reply