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

by ztian299
Thu Jun 19, 2008 12:56 am
Forum: Script Requests
Topic: nickserv check
Replies: 7
Views: 3905

.pt wrote:ircd? im talking about eggdrop, not ircd.
This is a service for IRCD. That's what you ask about
by ztian299
Wed Jun 18, 2008 8:34 am
Forum: Script Requests
Topic: Blacklist Script
Replies: 17
Views: 7145

Don't think so, if so.. the bot need to have access to add bans in X
by ztian299
Wed Jun 18, 2008 8:32 am
Forum: Eggdrop Help
Topic: [SOLVED] bot sets +s on a chan when given @
Replies: 2
Views: 2223

.chanset #chan chanmode -s

in partyline
by ztian299
Tue Jun 17, 2008 3:50 pm
Forum: Script Requests
Topic: nickserv check
Replies: 7
Views: 3905

It's a service that is used with the IRCD-server. Check what IRCD server you are running and find what services supported
by ztian299
Tue Jun 17, 2008 3:49 pm
Forum: Script Requests
Topic: Blacklist Script
Replies: 17
Views: 7145

by ztian299
Tue Jun 17, 2008 2:32 pm
Forum: Script Requests
Topic: nickserv check
Replies: 7
Views: 3905

that is done by Nickserv service. Just F*cking Google it!
by ztian299
Mon Jun 16, 2008 7:35 am
Forum: Script Requests
Topic: Greet script Request
Replies: 14
Views: 5785

then write your own, or add your needs!
by ztian299
Thu Jun 12, 2008 6:37 am
Forum: Shell & Bouncer Help
Topic: need help uploading files...
Replies: 2
Views: 9294

download WinSCP
and upload
by ztian299
Tue Jun 03, 2008 10:26 am
Forum: Scripting Help
Topic: Help Shoutcast
Replies: 29
Views: 26268

You have a close-brace"}" that shouldn't be there! That's why you getting that error
by ztian299
Mon Jun 02, 2008 4:33 pm
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

Again some problems.. I've tried 2-3 blowcrypt scripts from tcl-archive and google. And all return Tcl error [encryptedincominghandler]: can't read "display": no such variable the if-loop is like this: if {[lindex $count 0] == 0} {set display "0"} Why? tried to change the stuff i...
by ztian299
Mon Jun 02, 2008 8:52 am
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

is it possible to have a select query like this: set count [mysql $dbconnect "SELECT COUNT(*) FROM table WHERE user LIKE 'blah%' ORDER BY time DESC LIMIT 5" -flatlist] if {$count == 0} {set user "No user found"} putserv "PRIVMSG $chan :User:$count" How would this if-loo...
by ztian299
Sun Jun 01, 2008 6:12 pm
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

Really, didn't know that space was that important! thanks again speechles
by ztian299
Sun Jun 01, 2008 6:03 pm
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

Hmm if {[string match $chan "#blah"]}{set limit 5} set search [mysqlsel $dbconnect "SELECT nick,fname,lname,info,time FROM table WHERE nick LIKE '$nick%' LIMIT $limit" -flatlist] Giving me this error AGAIN. Wondering why it should be that hard to make a little limit! Tcl error [p...
by ztian299
Sun Jun 01, 2008 5:19 pm
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

Could i do something like this:
if ("$chan" == "#somechannel"){set limit "5"}
and then use $limit in the select query?
to be honest i have tried, but got "extra characters after close-quote" and "after close-brace" why's that?
by ztian299
Sun Jun 01, 2008 4:55 pm
Forum: Scripting Help
Topic: convert unixtime into human readable time[SOLVED]
Replies: 34
Views: 14378

nml375: I didn't do anything else than change -list to -flatlist and everything works? :D pretty impressive. Thanks, how can i know next time if i should use -flatlist or just -list?