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

by greenbear
Thu Jun 09, 2005 2:53 pm
Forum: Archive
Topic: -ban to file
Replies: 2
Views: 1826

or you can use bind filt
by greenbear
Thu Jun 09, 2005 12:52 pm
Forum: Archive
Topic: voice devoice problem
Replies: 5
Views: 2997

see if setting the chan +nodesync helps
by greenbear
Tue Jun 07, 2005 8:24 am
Forum: Archive
Topic: Question about interrupting a script
Replies: 7
Views: 3615

you could also use a max number of lines setting.
by greenbear
Mon Jun 06, 2005 2:41 pm
Forum: Archive
Topic: scripts!!
Replies: 2
Views: 2151

a error description and/or error msg would be nice
by greenbear
Sun Jun 05, 2005 12:28 pm
Forum: Archive
Topic: Script is not closing files (I think)
Replies: 8
Views: 3022

that said, just add 'close $fp' after the 'set lines ....' line
by greenbear
Sat Jun 04, 2005 11:38 pm
Forum: Archive
Topic: I can't run my eggdrop
Replies: 5
Views: 3375

uhm, compile it and make sure you run it from the correct dir ?
by greenbear
Sat Jun 04, 2005 11:39 am
Forum: Archive
Topic: Socket or HHTPD
Replies: 1
Views: 3952

the examples at the end of egghttp.tcl tells you everything you need to know about it, and if you search this forum you'll find dozens of code snippets using it.
by greenbear
Tue May 31, 2005 2:23 pm
Forum: Archive
Topic: timer and join - olala
Replies: 8
Views: 3096

Code: Select all

append basis _fleet
by greenbear
Sun May 29, 2005 2:27 pm
Forum: Archive
Topic: Botnet help
Replies: 3
Views: 1798

There's a command
.botinfo
by greenbear
Sat May 28, 2005 10:16 am
Forum: Archive
Topic: Date help
Replies: 4
Views: 1676

change it to

Code: Select all

set date [strftime %Y-%m-%d]
by greenbear
Fri May 27, 2005 7:36 pm
Forum: Other Topics
Topic: Suggestion: Attachment mod for the site
Replies: 12
Views: 6376

i dont see the need for attachements. ppl will just post their scripts all over the forum, instead of submitting them to the archive, making them harder/impoosible to find.

it'll also be harder to find code examples using search.
by greenbear
Fri May 27, 2005 11:52 am
Forum: Archive
Topic: If someone can fix this chess tcl
Replies: 3
Views: 2119

for one its not a eggdrop script, its using Tk do draw a ui.
by greenbear
Fri May 27, 2005 10:43 am
Forum: Archive
Topic: If someone can fix those tcl or get me better
Replies: 5
Views: 2219

its not a eggdrop script, its a desktop game that just happen to have been written in the same scripting language. it has a GUI (frames and windows and buttons to click ..etc), and its not intended for eggdrop whatsoever. It will never work on a eggdrop.
by greenbear
Thu May 26, 2005 7:02 pm
Forum: Archive
Topic: If someone can fix those tcl or get me better
Replies: 5
Views: 2219

its not a eggdrop script, its a desktop game.
by greenbear
Thu May 26, 2005 6:51 pm
Forum: Archive
Topic: timer proplem :(
Replies: 1
Views: 1121

set msgs { {"msg 1"} {"msg 2"} } set delay 20 set spamchan #channel if ![string match -noc "*spam*" [timers]] { timer $delay spam } proc spam {} { set msg [lindex $::msgs [rand [llength $::msgs]]] putserv "PRIVMSG $::spamchan :$msg" timer $::delay spam }