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

by slashem
Tue Nov 12, 2002 6:25 pm
Forum: Archive
Topic: help with netsay for script
Replies: 0
Views: 970

help with netsay for script

Hiya I have two bots connected in a botnet.. one is master, other is slave.. I used the netbot.tcl to control the bot(s) in the botnet.. .netcontrol slave to activate slave and then .netsay <nickname> <message> to get slave to message a certain person.. this all works fine in the partyline, but I wa...
by slashem
Mon Nov 11, 2002 12:49 pm
Forum: Archive
Topic: netsay
Replies: 0
Views: 850

netsay

Hiya I have two bots connected in a botnet.. one is master, other is slave.. I used the netbot.tcl to control the bot(s) in the botnet.. .netcontrol slave to activate slave and then .netsay <nickname> <message> to get slave to message a certain person.. this all works fine in the partyline, but I wa...
by slashem
Mon Oct 07, 2002 6:14 am
Forum: Archive
Topic: timer help..
Replies: 1
Views: 1049

timer help..

I made a procedure that I wanna execute every 3 hours.. proc timecheck { } { ... some code .. } it checks a database for something and msg's something to a nickname if it's found.. I wanna do this procedure every 3 hours so do I just add: timer 180 [timecheck] in the eggdrop.conf ? I tried .tcl time...
by slashem
Sun Oct 06, 2002 10:58 am
Forum: Archive
Topic: timed events and check if user ison chan
Replies: 1
Views: 1048

timed events and check if user ison chan

I found on the forum here that you can use: bind time - "* 05 * * *" { to execute something every hour :05 minutes.. but how can you make it do something every two or every three hours? and another question I have is how can you check if a nickname is in your current channel? like: if { bo...
by slashem
Sun Sep 29, 2002 8:11 am
Forum: Archive
Topic: sql and special chars
Replies: 5
Views: 1457

ok, found the function had to use [mysqlescape $variable] .. but now a new problem has arisen :/ when I retrieve the text I put in the sql db back I get it like {he's bla bla bla bla} as a string.. with those {} :/ how can I msg that to a person without those {} ? ---- Hmm, I was trying some more st...
by slashem
Sun Sep 29, 2002 7:22 am
Forum: Archive
Topic: sql and special chars
Replies: 5
Views: 1457

I'm using some tcl-mysql package (mysqltcl)

which funtion for escaping characters are you pointing to ?

the only code that generates the error is
"insert into msgs ( msgcontents ) values ('$message')" because $message contains words with a ' in it
by slashem
Sun Sep 29, 2002 5:41 am
Forum: Archive
Topic: sql and special chars
Replies: 5
Views: 1457

sql and special chars

I'm making some kind of !msg bot where members can use !msg <username> <message_text> to send msg's to offline users and when the users join the channel they'll get there message.. I'm having a problem with adding messages that contain special characters to the mysql database... "insert into ms...
by slashem
Sun Sep 15, 2002 12:51 pm
Forum: Archive
Topic: dcc sending a file
Replies: 4
Views: 1279

thx..
was indeed the filesys not being loaded :/
by slashem
Sun Sep 15, 2002 10:21 am
Forum: Archive
Topic: dcc sending a file
Replies: 4
Views: 1279

nope, doesn't make a difference..
still doesn't work
by slashem
Sun Sep 15, 2002 9:04 am
Forum: Archive
Topic: dcc sending a file
Replies: 4
Views: 1279

dcc sending a file

hiya, I'm having some problems dcc sending a file.. looked at some example scripts and search the forum here already, but didn't really find anything that helped me :/ the file I want to send to a user is stored in $file.. I write to $file, and after that I just have [dccsend $file $nick] but that d...
by slashem
Fri Sep 13, 2002 6:57 pm
Forum: Archive
Topic: help with format
Replies: 4
Views: 1280

ok, say I wanna use a fixed width of 10 chars..
how do I apply that format function to it so that "bobby" becomes "bobby "...
or do I have to make a procedure for usernames that adds spaces?
by slashem
Fri Sep 13, 2002 3:18 pm
Forum: Archive
Topic: help with format
Replies: 4
Views: 1280

help with format

searched this forum and see some ppl referring to the format command, but I'm having major problems with it on using it right :( I need to notice the users the following line several times: | date | user | item but user can be different each time, so the layout gets all messed up like: | date | user...
by slashem
Wed Aug 14, 2002 2:55 pm
Forum: Archive
Topic: output of data from mysqltcl ??
Replies: 2
Views: 1212

hmm, true Using two queries now.. set info [join [mysqlsel $db "select sid, shortname, prop1, prop2, prop3, longname from listing where shortname = '$blub'" -list]] for the first.. I can access each of the different things through [lindex $info 5] I tried it without that join and then I co...
by slashem
Wed Aug 14, 2002 12:27 pm
Forum: Archive
Topic: output of data from mysqltcl ??
Replies: 2
Views: 1212

output of data from mysqltcl ??

I've finally gotten the mysqltcl to work.. but I'm not so good at using it.. I can make a query, but can't really get the output of it.. :x the dbase contains two tables.. (see tablenames with example input..) table: listing sid shortname longname propertie1 propertie2 1 sth something long heavy tab...
by slashem
Wed Aug 14, 2002 8:37 am
Forum: Archive
Topic: mysql + eggdrop WINDOWS
Replies: 3
Views: 1418

I made a mysql dir so that I have c:\windrop\mysql\ and I placed those three files in it..
but where do I type that "package require mysqltcl" ? + I don't really see a link man2html on the main page :/ ( that is if mainpage = egghelp.org )