Op Script

#TCL
Verfügbare Informationen zu "Op Script"

  • Qualität des Beitrags: 0 Sterne
  • Beteiligte Poster: Yoshio
  • Forum: #TCL
  • aus dem Unterforum: Bau Land
  • Antworten: 1
  • Forum gestartet am: Donnerstag 11.01.2007
  • Sprache: deutsch
  • Link zum Originaltopic: Op Script
  • Letzte Antwort: vor 17 Jahren, 2 Monaten, 31 Tagen, 23 Stunden, 59 Minuten
  • Alle Beiträge und Antworten zu "Op Script"

    Re: Op Script

    Yoshio - 28.01.2007, 01:10

    Op Script
    bind pub nm +deop pub:deop

    proc pub:deop {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan -oooooo $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }


    bind pub nm +op pub:op

    proc pub:op {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan +oooooo $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +hop pub:hop

    proc pub:hop {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan +hhhhhh $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +dehop pub:dehop

    proc pub:dehop {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan -hhhhhh $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +voice pub:voice

    proc pub:voice {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan +vvvvvv $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +devoice pub:devoice

    proc pub:devoice {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan -vvvvvv $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +aop pub:aop

    proc pub:aop {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan +aaaaaa $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub nm +deaop pub:deaop

    proc pub:deaop {nick host hand chan text} {
    global botnick
    if {[botisop $chan] && [onchan $nick $chan]} {
    set nick1 [lindex $text 0]; set nick2 [lindex $text 1]
    set nick3 [lindex $text 2]; set nick4 [lindex $text 3]
    set nick5 [lindex $text 4]; set nick6 [lindex $text 5]
    putquick "MODE $chan -aaaaaa $nick1 $nick2 $nick3 $nick4 $nick5 $nick6"
    }
    }

    bind pub n +deqnick pub_denickqme

    proc pub_denickqme {nick uhost hand chan text} {
    putserv "mode $chan -q $text"
    }

    bind pub n +qnick pub_nickqme

    proc pub_nickqme {nick uhost hand chan text} {
    putserv "mode $chan +q $text"
    }

    bind pub n +qme pub_qme

    proc pub_qme {nick uhost hand chan arg} {
    putserv "mode $chan +q $nick"
    }

    bind pub n +deqme pub_deqme

    proc pub_deqme {nick uhost hand chan arg} {
    putserv "mode $chan -q $nick"
    }


    bind pub n +botserv pub_botserv

    proc pub_botserv {nick uhost hand chan arg} {
    putserv "mode $botnick +B"
    putserv "privmsg $chan done."
    }

    bind pub n +add4 bot:add4

    proc bot:add4 {nick host hand chan text} {
    global botnick
    putserv "cs access $chan add $text 4"
    putserv "privmsg $chan done."
    }

    bind pub n +add5 bot:add5

    proc bot:add5 {nick host hand chan text} {
    global botnick
    putserv "cs access $chan add $text 5"
    putserv "privmsg $chan done."
    }

    bind pub n +add10 bot:add10

    proc bot:add10 {nick host hand chan text} {
    global botnick
    putserv "cs access $chan add $text 10"
    putserv "privmsg $chan done."
    }

    bind pub n +del bot:del

    proc bot:del {nick host hand chan text} {
    global botnick
    putserv "cs access $chan del $text"
    putserv "privmsg $chan done."
    }

    bind pub n fass pub_fass

    proc pub_fass {nick host hand chan text} {
    putserv "privmsg $chan :Schnappt sich das hosenbein von $text und schleppt ihn nach draussen"
    putserv "mode $chan +b $text"
    putserv "KICK $chan $text :*böseguck* nun bleibst du draussen *knurr* *bell*"
    putserv "NOTICE $text *knurrr*"
    }


    putlog "schutz geladen"



    Mit folgendem Code, können Sie den Beitrag ganz bequem auf ihrer Homepage verlinken



    Weitere Beiträge aus dem Forum #TCL

    DCC Commands - gepostet von Daniel am Sonntag 21.01.2007
    daaa bin ich...... - gepostet von Yoshio am Freitag 02.03.2007



    Ähnliche Beiträge wie "Op Script"

    Edronax-Erektions-Error - °°°derAbzulehnende (Samstag 01.09.2007)
    ErRoR_4rM_Pk_v1... - __MajoR__ (Montag 13.11.2006)
    ERROR! - Error (Freitag 04.05.2007)
    Parse error - freewebstat (Mittwoch 02.11.2005)
    error save - stev (Samstag 11.02.2006)
    Corrupt Data Error posting collection and download links. - hunterhh (Sonntag 21.05.2006)
    ERROR after level 18 - Anonymous (Dienstag 15.06.2004)
    Softmod 21.05.07 [Download]+Error anleitung 22.05.07 Bsbj? - TheOne (Montag 21.05.2007)
    cRiTiCaL.eRRoR vs. -=[SuperCollective]=- - stiffler (Samstag 05.02.2005)
    Error#304 - Gilli (Sonntag 11.02.2007)