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.

Public command script

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

Public command script

Post by mAxP »

hu experts helo again :)

im a total noob and want to write my own script
for !join #chan !part #chan !kick !kickbann !voice !unbann !op

i found the The_Quickening script for that but i want to write my own script

can somebody give me an example for a easy !join #chan script not that complicated like in The_Quickening. the rest i want to do alone :)

thx 2 all helpers :>
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

Here, is mine:

Code: Select all

#  __                __      __    
# /\ \              /\ \  __/\ \   
# \ \ \         __  \ \ \/\ \ \ \  
#  \ \ \  __  /'__`\ \ \ \ \ \ \ \ 
#   \ \ \_\ \/\ \_\ \_\ \ \_/ \_\ \
#    \ \____/\ \__/ \_\\ `\___ ___/
#     \/___/  \/__/\/_/ '\/__//__/ 
#
# Commands Script by LaW.
#
# Don't change anything.
# Report bugs to #GeeX on Quakenet.


#  Join/Part/Hop/Say/Nick/Broadcast

  #  configuration

     #  variables

          set cmd(trigger) "\."
          set cmd(author)  "LaW (#GeeX on Quakenet)"
          set cmd(version) "1.0"

     #  bindings

          bind PUB n|- "$cmd(trigger)join" pub:join
          bind PUB n|- "$cmd(trigger)part" pub:part
          bind PUB n|- "$cmd(trigger)hop"  pub:hop
          bind PUB n|- "$cmd(trigger)say"  pub:say
          bind PUB n|- "$cmd(trigger)nick" pub:nick
          bind PUB n|- "$cmd(trigger)bc"   pub:bc

     #  copyright

          putlog "Commands Script version $cmd(version) scripted by $cmd(author)"

     #  source (again DO NOT change anything if you are not 100% sure)

          proc pub:part { nick uhost hand chan text } {
           if {$text == ""} { 
            channel remove $chan } 
           else { 
            channel remove $text }
          }

          proc pub:join { nick uhost hand chan text } { 
           channel add $text 
          }

          proc pub:hop { nick uhost hand chan text } { 
           if {$text == ""} { 
            putserv "PART $chan" } 
           else { 
            putserv "PART $text" }
          }

          proc pub:say { nick uhost hand chan text } { 
           putserv "PRIVMSG $chan :$text" }

          proc pub:nick { nick uhost hand chan text } { 
           set ::nick $text }

          proc pub:bc {nick host hand chan text} {
           putquick "PRIVMSG [join [channels] ","] :[join [split $text]]"
          }
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

Post by mAxP »

thx works all fine

but ".hop"
bot parts chan but doesnt rejoin

[17:50] Tcl error [pub:part]: invalid command name "else"

some one got a sollution?

same error, but commad works
[17:50] Tcl error [pub:part]: invalid command name "else"


and another question

is it possible to ".part #chan" because part only works on the channel you want to part with ".part"

THX GUYZ :]
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

Code: Select all

}
else {
is incorrect syntax. Use:

Code: Select all

} else {
or

Code: Select all

} {
I
Ian-Highlander
Op
Posts: 165
Joined: Mon Sep 24, 2001 8:00 pm
Location: Ely, Cambridgeshire

Post by Ian-Highlander »

The only thing to bear in mind is that written that way that script is completely insecure, anyone could spoof an owners hostmask and have full access to all the commands built into that and any scripts like it.

One of the reasons The_Quickening is as "complicated" as it is (I didnt think it actually was particularly complicated) is that when I wrote it I deliberately tried to make it as secure as I could because I'd seen the results of insecure public commands scripts, thats why it has the extra protection of a password protected authentication system built in.

Of course you are completely free to do what you want but it wouldnt be right to let you do so without letting you know the implications of it first. :D
"Insanity Takes Its Toll, Please Have Exact Change"
m
mAxP
Voice
Posts: 8
Joined: Mon Feb 13, 2006 9:34 am

Post by mAxP »

thx for all replys
@sir_fz now all works without errors :)
@highlander

for me as noob its very difficult to understand this maybe changes in a few weeks ;> and your right its not very secure but its secure enouth for me

so thx guys every question done
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

Lil Update:

Code: Select all

#  __                __      __    
# /\ \              /\ \  __/\ \   
# \ \ \         __  \ \ \/\ \ \ \  
#  \ \ \  __  /'__`\ \ \ \ \ \ \ \ 
#   \ \ \_\ \/\ \_\ \_\ \ \_/ \_\ \
#    \ \____/\ \__/ \_\\ `\___ ___/
#     \/___/  \/__/\/_/ '\/__//__/ 
#
# Commands Script by LaW.
#
# Don't change anything.
# Report bugs to #GeeX on Quakenet.


#  Join/Part/Hop/Say/Nick/Broadcast/Msg/Jump

  #  configuration

     #  variables

          set cmd(trigger) "\!"
          set cmd(author)  "LaW (#GeeX on Quakenet)"
          set cmd(version) "1.1"

     #  bindings

          bind PUB n|- "$cmd(trigger)join" pub:join
          bind PUB n|- "$cmd(trigger)part" pub:part
          bind PUB n|- "$cmd(trigger)hop"  pub:hop
          bind PUB n|- "$cmd(trigger)say"  pub:say
          bind PUB n|- "$cmd(trigger)nick" pub:nick
          bind PUB n|- "$cmd(trigger)bc"   pub:bc
          bind PUB n|- "$cmd(trigger)msg"  pub:msg

     #  copyright

          putlog "Commands Script version $cmd(version) scripted by $cmd(author)"

     #  source (again DO NOT change anything if you are not 100% sure)

          proc pub:part { nick uhost hand chan text } {
           if {$text == ""} { 
            channel remove $chan 
           } else { 
            channel remove $text }
          }

          proc pub:join { nick uhost hand chan text } { 
           channel add $text 
          }

          proc pub:hop { nick uhost hand chan text } { 
           if {$text == ""} { 
            putserv "PART $chan" } 
           else { 
            putserv "PART $text" }
          }

          proc pub:say { nick uhost hand chan text } { 
           putserv "PRIVMSG $chan :$text"
          }

          proc pub:nick { nick uhost hand chan text } { 
           set ::nick $text
          }

          proc pub:bc { nick host hand chan text } {
           foreach chan [channels] { puthelp "privmsg $chan :$text" }
          }
          
          proc pub:msg { nick host hand chan text } {
           set chan [lindex $text 0]
           set msg [lrange $text 1 end]
           putserv "PRIVMSG $chan :$msg"
          }
          
          proc pub:jump {nick host hand chan text} {
           set server [lindex $text 0]
           set port [lindex $text 1]
           jump $server $port
          }
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

this script is worthless in my opinion because you do no checking for anything at all.

You don't split any arguments at all so it won't work with special characters such as {}[]\.

Furthermore the fact that you escape '!' as trigger tells me you don't know what placing an \ before it does.

Here is a proper script..

(yes i know it's just a good version of what he made)

Code: Select all

# you can set any trigger, setting $ won't make a difference and you don't have to escape it.
set trigger "!"

# i left out things i found utterly useless. add them yourself if you still want it
bind PUB n|-  ${trigger}join  pub:join
bind PUB n|-  ${trigger}part  pub:part
bind PUB n|-  ${trigger}hop   pub:hop
bind PUB n|-  ${trigger}nick  pub:nick
bind PUB n|-  ${trigger}bc    pub:bc

proc pub:part {nickname hostname handle channel arguments} {
  if {![llength [split $arguments]]} {
    channel remove $channel
  } elseif {![validchan [set channel [lindex [split $arguments] 0]]]} {
    putserv "NOTICE $nickname :Unknown channel '$channel'"
  } else {
    channel remove $channel
  }
}

proc pub:join {nickname hostname handle channel arguments} {
  if {![llength [split $arguments]] || [validchan [set channel [lindex [split $arguments] 0]]]} {
    putserv "NOTICE $nickname :Please use $::lastbind #channel"
  } else {
    channel add $channel
  }
}

proc pub:hop {nickname hostname handle channel arguments} {
  if {![llength [split $arguments]]} {
    putquick "PART $channel"
  } elseif {![validchan [set channel [lindex [split $arguments] 0]]]} {
    putserv "NOTICE $nickname :Unknown channel '$channel'"
  } else {
    putquick "PART $channel"
  }
}


proc pub:nick {nickname hostname handle channel arguments} {
  if {![llength [split $arguments]]} {
    putserv "NOTICE $nickname :Please use $::lastbind <new-nickname>"
  } else {
    set ::nick [lindex [split $arguments] 0]
  }
}

proc pub:bc {nickname hostname handle channel arguments} {
  if {![llength [split $arguments]]} {
    putserv "NOTICE $nickname :Please use $::lastbind <message>"
  } else {
    # i think most ircd's support this way of messaging but incase yours doesn't
    # remove the comment from the next line and comment the other one
    # foreach c [channels] { puthelp "PRIVMSG $c :[join [split $arguments]]" }
    putquick "PRIVMSG [join [channels] ,] :(Broadcast) [join [split $arguments]]"
  }
}
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

The "\" is for users that want user this trigger: "$"
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

As stated in the piece of script i made, you don't need to set it if you set your triggers properly.
G
GeeX
Voice
Posts: 29
Joined: Mon Sep 19, 2005 4:29 am

Post by GeeX »

well, it doens't matter, or does it? :D
s
starpossen
Op
Posts: 139
Joined: Tue Jan 10, 2006 1:08 am

Post by starpossen »

MeTroiD, how would one go about for adding more commands like .op .deop .voice .devoice etc.?
Im very new at this, but im trying to learn.
Post Reply