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

by Winters
Sat Mar 25, 2006 9:17 pm
Forum: Scripting Help
Topic: Give op on special text
Replies: 5
Views: 6257

and if you only want to get opped in one channel then try this :) bind msg - opme opme proc opme {nick host hand arg} { set chan "[lindex [split $arg] 0]" if {"$chan" == "" || ![string match "#*" "$chan"]} { puthelp "notice $nick :Wrong Channel ...
by Winters
Sat Mar 25, 2006 10:52 am
Forum: Scripting Help
Topic: Give op on special text
Replies: 5
Views: 6257

MSG bind msg <flags> <command> <proc> procname <nick> <user@host> <handle> <text> Description: used for /msg commands. The first word of the user's msg is the command, and everything else becomes the text argument. :> just change the proc with proc aop_op {nick host hand text} {
by Winters
Sat Feb 18, 2006 3:27 pm
Forum: Script Support & Releases
Topic: need help changing team manager script
Replies: 1
Views: 3744

# needs: tfile(dir/ver) # include files needed set tfile(cmm) "$tfile(dir)/team-common.dat" set tfile(cms) "0" # team-#channel.dat proc learn:rcf {channel} { global tfile if {$tfile(cms) == 1} { return $tfile(cmm) } else { return $tfile(dir)/team-$channel.dat } } # team-#channel...
by Winters
Sat Feb 18, 2006 3:23 pm
Forum: Scripting Help
Topic: Begrüßungs script
Replies: 1
Views: 3975

setudef str counter bind join - * join:greet proc join:greet {nick host hand chan} { if {"[channel get $chan counter]" == ""} { channel set $chan counter "0" } set id "[channel get $chan counter]" channel set $chan counter "[expr $id + 1]" putserv &...
by Winters
Sat Feb 18, 2006 4:32 am
Forum: Script Requests
Topic: Bot kicked, report to chan
Replies: 6
Views: 7693

Code: Select all

bind kick - * report:kick

proc report:kick {nick uhost hand chan targ reason} {
 if {[isbotnick $targ] && [botonchan #reportchan]} {
  puthelp "privmsg #reportchan :I was kicked from $chan by $nick at [ctime [unixtime]]"
 }
}
Try this
by Winters
Mon Jan 23, 2006 11:58 am
Forum: Scripting Help
Topic: server notice
Replies: 4
Views: 6519

thx :D it works
by Winters
Mon Jan 23, 2006 11:12 am
Forum: Scripting Help
Topic: server notice
Replies: 4
Views: 6519

server notice

Hi guys,

Hello of people, I would like that my Eggdrop post all server notices (from a Unreal irc server) he gets into one chan but i don't know how :/!

Could you help me please.. I searched all raw numeric but noone worked..
by Winters
Sun Jan 22, 2006 6:13 am
Forum: Script Requests
Topic: convert to TCL
Replies: 4
Views: 8534

i wrote this script 1 year ago ^^ but ok i will change it immediately
by Winters
Sat Jan 21, 2006 4:31 pm
Forum: Script Requests
Topic: convert to TCL
Replies: 4
Views: 8534

Here my Script :)! ######################################## # Enemy Territory Voice Chat Script 1.0# # Scripted by Winters #Winters @ Qnet # ######################################## set v51 { "Affirmitive!!!" "Jawohl!" "Yes!" "Ja!" } set v52 { "Negative!!...
by Winters
Sun Nov 27, 2005 10:35 am
Forum: Scripting Help
Topic: Check auth
Replies: 4
Views: 9810

Sry for my english but i want a script that whois a user and check whether he is authed or not
by Winters
Sun Nov 27, 2005 10:13 am
Forum: Scripting Help
Topic: Check auth
Replies: 4
Views: 9810

Check auth

I m8s,

i want to write a Auth Check script that checks if a users is authed who request the bot or not but i have no idea how to start it :x pls help
by Winters
Fri Nov 25, 2005 7:56 pm
Forum: Script Requests
Topic: Force join main channel (help)
Replies: 9
Views: 6041

Code: Select all

#This is the Script to Oper your bot

bind evnt - init-server oper:yourself

proc oper:yourself {type} {
global botnick
putserv "oper accname accpass"
putserv "mode $botnick +s"
}
by Winters
Fri Jul 29, 2005 6:40 am
Forum: Archive
Topic: Protectin error :/
Replies: 2
Views: 2165

Protectin error :/

I just made a anti overtake script but at some modes it doesn't work like this: Test1 sets mode: +i Bot make nothing Test2 sets mode: +k dd Bot make nothing Test3 sets mode: +l 1 Bot make nothing And here is my code :> and there are no known errors (i think) bind pub - * mode:protection proc mode:pr...
by Winters
Tue Jul 26, 2005 9:07 am
Forum: Archive
Topic: Report script
Replies: 1
Views: 1916

Report script

Hi @ all me again ^^. I just want a script wich report ban, kick,deop on the bot just like that: Tester1 sets mode: -o Bot Bot: Tester1 deopped mi in #channel Tester1 sets mode; +b *!*@bothost.com Bot: Tester1 banned me in #channel Tester1 kicked bot from #channel Bot: Tester1 kicked me from #channe...
by Winters
Sun Jul 24, 2005 9:44 am
Forum: Archive
Topic: Flood Protection
Replies: 2
Views: 2043

forgot to change m too -|-