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.

Search found 2 matches

by tets
Sun May 09, 2010 6:28 am
Forum: Scripting Help
Topic: execute eggdrop error
Replies: 0
Views: 1971

execute eggdrop error

I give the error in execute eggdrop. [11:27] wrong # args: should be "proc name args body" while executing "proc auth { nick uhost hand arg } { global botnick ci cf db mainchan mainchanpvt modeauth set d [::mysql::connect -host $bdhost -user $bduser -passwo..." (file "script...
by tets
Sun May 02, 2010 1:04 pm
Forum: Script Requests
Topic: !say #Channel Text Text text
Replies: 3
Views: 2718

There is a much easier way

Code: Select all

bind pub m !say say

proc say { n u h c t } {
  set l [split $t]
  set channel [lindex $l 0]
  set msg [join [lrange $l 1 end]]
  puthelp "privmsg $channel :$msg"
}
correct now :)