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

by AUTIST
Thu Nov 03, 2005 3:42 pm
Forum: Scripting Help
Topic: how to login to telnet and then read any information.
Replies: 5
Views: 11949

Anybody could help? Please!
by AUTIST
Wed Nov 02, 2005 11:31 am
Forum: Scripting Help
Topic: how to login to telnet and then read any information.
Replies: 5
Views: 11949

This code is connectiong to DBOX, but I cannot recieve any data from there if {[catch {set sock [socket "dbox" 23]} sockerr]} { puts "$sockerr"; puts "not connected"; return } else { puts "connected" } flush $sock puts "123" while {![eof $sock]} { se...
by AUTIST
Wed Nov 02, 2005 10:41 am
Forum: Scripting Help
Topic: how to login to telnet and then read any information.
Replies: 5
Views: 11949

Hi, looks like you didnt understand, or may be my english is very bad :) I don't need to connect to bot, or from bot to another bot. I have a telnet server, and when I connect to that server I can see some codes, links, some useful stuff for me. I need a script which can coonnect to that server to p...
by AUTIST
Tue Nov 01, 2005 11:39 pm
Forum: Scripting Help
Topic: how to login to telnet and then read any information.
Replies: 5
Views: 11949

how to login to telnet and then read any information.

Hi guys, could you please help me. I need to connect from my bot to telnet on other server and reading some stuff from there. I think it needs to use sockets, but I don't know how can I login and then reading info from connection. set somesock [socket "127.0.0.1" 23] And what should I do t...
by AUTIST
Thu Oct 06, 2005 2:27 pm
Forum: Archive
Topic: Where I can find the all server RAWs descriptions
Replies: 1
Views: 5848

Where I can find the all server RAWs descriptions

Where can I find the all server RAWs descriptions.
Hi guys, could you help me to find the list of RAW and descriptions for them.

Thank in advance. AUT.
by AUTIST
Fri Aug 26, 2005 8:42 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

Big thanks! It works with bind RAW
by AUTIST
Fri Aug 26, 2005 3:04 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

Let me explain, you used next (testing only for 'q' flag): bind mode - * moo proc moo {n u h c m v} { switch -- $m { "+q" {lappend ::owns($c) $v putlog "+own $::owns($c)" } "-q" {if {[info exists ::owns($c)] && [set i [lsearch -exact $::owns($c) $v]] != -1} { pu...
by AUTIST
Fri Aug 26, 2005 11:42 am
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

Yes, thanks, but one more problem :)
I use this for debug:

Code: Select all

"+q" {lappend ::owns($c) $v
		   putlog "$m $v"
		} 
but in the bot console only +q appeared... without nickname. As the result it not deleting nicks if -flag and not adding is +flag. Cannot catch why it doesn't appear
by AUTIST
Thu Aug 25, 2005 10:50 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

And additional question: The bot is joining the channel and update his list with sops and owns. But any owner also has +ao mode. When this owner sets -q (remove owner flag) for himself - the bot removes him from owns list, BUT he is a SOP now and his nick doesn't exist in the sops list. Have any ide...
by AUTIST
Thu Aug 25, 2005 10:46 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

Thanks, it works, but how can I track realtime modes? I mean if the bot is on the channel and any user have had a SOP status (+a) or may be it has both of them +aoq May be you have any ideas how track it? Is the bind mode - * catch_mode the best method to update the sops and owns list every time? Th...
by AUTIST
Thu Aug 25, 2005 6:27 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

if {([isop $nick $chan]) || ([isvoice $nick $chan]) || ([ishalfop $nick $chan]) || ([matchattr $hand n])} { return } else { set phrase [lindex $plist [rand [llength $plist]]] regsub -all -nocase {%nick} $phrase $nick phrase putserv "PRIVMSG $chan :$phrase" } This is a code. This code chec...
by AUTIST
Thu Aug 25, 2005 5:36 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

Hi, I have tried to catch names with the special symbols, but no result.

Could you please give me a some code how can I catch the nickname with the specialsymol, like &AUTIST or ~AUTIST

Thanx
by AUTIST
Wed Aug 24, 2005 11:08 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

thanx guys, I'll try. I asked just to be sure that there is no standart command for this.
by AUTIST
Wed Aug 24, 2005 9:58 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12600

How to detect SOP (&nick) in Unreal ircd

Hi guys, We are sterted to use Unreal ircd in our network. And I want to recode some of cmds. How to detect that user is SOP in Unreal? op detecting is workin properly in old version: if {[isop $nick]} {...} (@ op char) But how can I detect sop (& sop char) And may be it is possible channel owen...
by AUTIST
Mon Jul 05, 2004 1:15 pm
Forum: Archive
Topic: problems linking two bots on same machine but diff vhosts
Replies: 1
Views: 902

I have three bots on one machine, and they are linked to each other. If you have aby questions, send me private message. I'll try to help you. But my bots all on one IP, they have different prts, like 1st - listen 3333 2nd - listen 4444, 3rd - listen 5555 The for withc bot make .addbot <handle> <add...