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 9 matches

by MrAnderson
Mon Aug 15, 2005 7:34 pm
Forum: Archive
Topic: "invalid command name "sumuser"" why?
Replies: 7
Views: 4971

ok, tks

but is stange, some commands, like resetuser and other, be a tcl command, and works fine, but sumuser not.
by MrAnderson
Mon Aug 15, 2005 6:30 pm
Forum: Archive
Topic: "invalid command name "sumuser"" why?
Replies: 7
Views: 4971

sumuser is dcc command, not Tcl command ok, but this code for exemple: proc pub:reset {nick uhost hand chan text} { set addnick [lindex $text 0] if {![matchattr $nick o} { putserv "NOTICE $nick :No access"; return 0 } elseif { ![validuser $addnick]} { putserv "NOTICE $nick : ERROR: I...
by MrAnderson
Mon Aug 15, 2005 6:04 pm
Forum: Archive
Topic: "invalid command name "sumuser"" why?
Replies: 7
Views: 4971

"invalid command name "sumuser"" why?

hello hi have a problem with this code: bind pub - !transferir pub:transferir proc pub:transferir {nick uhost hand chan text} { set cromo1 [lindex $text 0] set cromo2 [lindex $text 1] set resto [lindex $text 2] if {![matchattr $nick o]} { putserv "NOTICE $nick :No access!"; return 0} if {$...
by MrAnderson
Thu Jan 06, 2005 9:30 am
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

user, my eggdrop is givem that error of "no channel call file.dat " and now i cam understeend why.. tks [[]]
by MrAnderson
Mon Jan 03, 2005 5:46 pm
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

weee... tks ppl for helping me. now it work's at 100% final code: bind pub - !partidas pub:partidas proc pub:partidas {nick uhost handle chan arg} { if {![file exists partidas.txt] } { putserv "PRIVMSG $nick :Sem novas partidas" } else { set f [open partidas.txt] putserv "PRIVMSG $nic...
by MrAnderson
Mon Jan 03, 2005 3:29 pm
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

try and try and notting =\ This is the code rewrithem: bind pub - !partidas pub:partidas proc pub:partidas {nick uhost handle chan arg} { set fname "partidas.txt" if {![file exists $fname] } { putserv "PRIVMSG $nick :Sem novas partidas"} foreach line [split [read -nonewline $fnam...
by MrAnderson
Mon Jan 03, 2005 3:10 pm
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

sorry.. but can you explain better?
Is to resume for me, a try that, but i think that im doing that not in the right way.
by MrAnderson
Mon Jan 03, 2005 2:44 pm
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

no, there is a } before the rest.
i am trying to read a file that exist, and work's, but only read the fist line, and not all =\
And i don't know do it =\
by MrAnderson
Mon Jan 03, 2005 1:17 pm
Forum: Archive
Topic: make a egg read a file in the channel [RESOLV]
Replies: 12
Views: 3723

make a egg read a file in the channel [RESOLV]

Hello. i was tying to put a egg reading a file, and put the file in the channel or private windows, but the egg only read's the fisrt line, i try lot's of way's, follow wat is in the egg faq called " Basic File Operations" but i can't doint. This is the code: bind msg - !partidas msg:parti...