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

by Getodacul
Fri Oct 16, 2009 2:42 pm
Forum: Script Requests
Topic: Q Request Script
Replies: 1
Views: 2668

You need something like: bind pub - "request" request:q bind pub - "!request" request:q bind pub - "!Q" request:q proc request:q { nick uhost hand chan text } { global owner botnick if {[onchan Q $chan]} {return 0} if {[botisop $chan] == 0} { puthelp "NOTICE $nick ...
by Getodacul
Sat Apr 18, 2009 4:09 pm
Forum: Eggdrop Help
Topic: [SOLVED] eggdrop via psybnc
Replies: 2
Views: 3768

modify in your eggdrop conf:
set servers {
your_bouncer:port:password
}
by Getodacul
Fri Mar 13, 2009 9:17 am
Forum: Scripting Help
Topic: Split a word in w o r d
Replies: 2
Views: 1991

thanks, i get the ideea and it's working
by Getodacul
Fri Mar 13, 2009 7:46 am
Forum: Scripting Help
Topic: Split a word in w o r d
Replies: 2
Views: 1991

Split a word in w o r d

How can i split a word in w o r d?
Example:
<Eddgrop> !s testing
<Eddgrop> t e s t i n g
I need only a ideea.
Thanks
by Getodacul
Fri Nov 21, 2008 5:09 pm
Forum: Scripting Help
Topic: How to exempt ops and voiced users
Replies: 2
Views: 2413

Something like that: # Protect ops (1=on 0=off) set protops 1 # Protect voices (1=on 0=off) set protvoices 1 # Protect flags (1=on 0=off) set protflags 1 set pflags "of|of" proc filter_bad_words {nick uhost handle channel args} { global badwords badreason banmask botnick bwduration protops...
by Getodacul
Fri Nov 21, 2008 12:43 pm
Forum: Scripting Help
Topic: Ping reply changer error
Replies: 1
Views: 2144

Ping reply changer error

# CTCP Ping Reply Changer bind dcc n ctcp ctcp set reply "-2secs" unbind ctcp -|- PING *ctcp:PING bind ctcp -|- PING edit_ping proc edit_ping {nick host hand dest keyword text} { global reply putserv "NOTICE $nick :\001PING $reply"} #unbind ctcp -|- PING edit_ping #useless line ...
by Getodacul
Thu Sep 25, 2008 9:49 am
Forum: Script Requests
Topic: Unban last ban.
Replies: 2
Views: 1894

That's the script: #Note: This script works of all the channels the bot is on. ############################################################################## ############################################################################## bind pub o "unban" unban:pub proc unban:pub {nick uho...
by Getodacul
Mon Sep 22, 2008 3:36 pm
Forum: Script Requests
Topic: Unban last ban.
Replies: 2
Views: 1894

Unban last ban.

I need a script who can unban the last ban on !unban command(on public channel or private). My realy problem is how to make the eggdrop to know what is the last ban.
by Getodacul
Tue Jun 17, 2008 11:45 am
Forum: Script Requests
Topic: .+host .-host public commands
Replies: 2
Views: 1783

Half problem solved but remhost or delhost it's out of line :) bind pub o "+host" pub:addhost #that's for user bind pub n ".+host" pub:changehost #that's for bots or other people proc pub:addhost { nick userhost hand chan host } { if {$host == ""} { puthelp "privms...
by Getodacul
Tue Jun 17, 2008 9:56 am
Forum: Script Requests
Topic: .+host .-host public commands
Replies: 2
Views: 1783

.+host .-host public commands

I need a script to add or remove a host on channel.
<me> .+host User1 *!*@new-hostname.tld
<Bot> *!*@new-hostname.tld added to User1
I find some tcl's that convert some dcc commands in public commands but modifications make that scripts broken or useless :)
Thanks.
by Getodacul
Tue Jan 01, 2008 4:55 pm
Forum: Eggdrop Help
Topic: Server bans problem.
Replies: 1
Views: 1718

Problem solved!
set bounce-bans 0
...in the conf file
by Getodacul
Tue Jan 01, 2008 11:14 am
Forum: Eggdrop Help
Topic: Server bans problem.
Replies: 1
Views: 1718

Server bans problem.

»16:32:31« * xs4all.nl.quakenet.org sets mode: +b *!*@dghgf.users.quakenet.org »16:32:31« * Info: This *!*@dghgf.users.quakenet.org ban affects Testing- »16:32:31« * Testing- was kicked by xs4all.nl.quakenet.org (Test!) »16:32:32« * Marker sets mode: -b *!*@dghgf.users.quakenet.org Marker it's eggdr...
by Getodacul
Sat Dec 22, 2007 3:04 pm
Forum: Scripting Help
Topic: Unix time
Replies: 3
Views: 2760

If i will know how to control that variable i will try to make a top N uptime script (based on signon time).
by Getodacul
Mon Dec 10, 2007 9:55 am
Forum: Scripting Help
Topic: Unix time
Replies: 3
Views: 2760

This date Mon Dec 10 14:24:31 2007 it's converted to 1197289471 by my eggdrop. And it's not a random number. I think that's unix time. I will put the script here: #################################################### # What is the minimum access someone needs check ontime? set ontime(acc) "-|-&q...
by Getodacul
Mon Dec 10, 2007 8:40 am
Forum: Scripting Help
Topic: Unix time
Replies: 3
Views: 2760

Unix time

Mon Dec 10 14:24:31 2007 = 1197289471 in unix time . How i must calculate to find a random date? (ex. 30/08/2008 )