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

by CyberianIce
Thu Jan 17, 2008 12:08 pm
Forum: Script Requests
Topic: Mode lock
Replies: 14
Views: 4850

Also worth noting, users with master and higher access, aswell as the bot itself may override the chanmode settings with their own settings
That's it! That must be the answer why mlock did not work. Probably coz I (Admin) am the only one who tested it...
by CyberianIce
Wed Jan 16, 2008 10:41 am
Forum: Script Requests
Topic: Mode lock
Replies: 14
Views: 4850

Ok, I see You not understand me, I tryed this commands: .+chan #channel1 .+chan #channel2 .+chan #channel3 .chanset #channel1 chanmode +nt-ipsmlk .chanset #channel2 chanmode +nt-ipsmlk .chanset #channel3 chanmode +nt-ipsmlk .chansave Did not work. Adding this code in config.conf: channel add #channe...
by CyberianIce
Tue Jan 15, 2008 9:42 pm
Forum: Script Requests
Topic: Mode lock
Replies: 14
Views: 4850

I tryed .-chan and .+chan -> .chansave and even ediding .conf -> .rehash but no luck...
Any Tcl ideas or not?
by CyberianIce
Tue Jan 15, 2008 10:48 am
Forum: Script Requests
Topic: Mode lock
Replies: 14
Views: 4850

I asked for Tcl script, not module based solution, coz I know that module based is better solution, but I already tryed that, and it did not work. However I will try to figure out why did'nt work, or ill made my very own, i guess very simple, Tcl script, wich should be just triggered on channel mode...
by CyberianIce
Tue Jan 15, 2008 12:05 am
Forum: Script Requests
Topic: Mode lock
Replies: 14
Views: 4850

Mode lock

Hi there, I need a Tcl script wich will make a Bot to keep three different channel modes to three different channels (Bot should return predefined channel modes if an channel mod change detect). Each mode for each channes. i.e For #channel1 Keep these modes +nt-iklmps For #channel2 Keep these modes ...
by CyberianIce
Sun Dec 30, 2007 6:05 pm
Forum: Scripting Help
Topic: What's wrong??
Replies: 3
Views: 2403

You are in right! I forgot to write beggining of the code:

Code: Select all

bind join -|- joincounter
.....
and users on join does not have @ yet.
by CyberianIce
Sat Dec 29, 2007 5:00 am
Forum: Scripting Help
Topic: What's wrong??
Replies: 3
Views: 2403

What's wrong??

What's wrong with this code??? proc joincounter {nick host hand chan} { global jhits global botnick set temp 0 set rchan [string tolower $chan] if {[file exists ./scripts/$rchan.jcount.txt]} { set o_fid [open "./scripts/$rchan.jcount.txt" "RDONLY"] gets $o_fid temp close $o_fid }...
by CyberianIce
Fri Dec 28, 2007 7:43 am
Forum: Scripting Help
Topic: Flags or what?
Replies: 4
Views: 2864

Nice, very nice! It work just fine now! Thank You very much!
by CyberianIce
Fri Dec 28, 2007 5:45 am
Forum: Scripting Help
Topic: Flags or what?
Replies: 4
Views: 2864

Yeah, I see. But is there any way to do that instead of puting 184 peoples in more over 16 channels in bots userfile?? I want to anybody who have just @ can use !op command, even if he is'nt at any access list or bots userfile....
by CyberianIce
Fri Dec 28, 2007 3:35 am
Forum: Scripting Help
Topic: Flags or what?
Replies: 4
Views: 2864

Flags or what?

Hi there. I am new in Tcl scripting, and I made script for public commands !op !deop !halfop !dehalfop !voice !devoice. But the script works only for me (I am owner of the bot), no for other ops in the channel. I do not know how to made script wich can be used by other op in channel, no only by me. ...