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.

Eggdrop Chat Advertising?

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
r
romaN237
Voice
Posts: 2
Joined: Sat Jan 08, 2011 3:26 pm

Eggdrop Chat Advertising?

Post by romaN237 »

Hello,

I have a question.
Is there a TCL script which every xx minutes in the IRC channel anything particular to write pure.

sry, its google translate english... :<
User avatar
caesar
Mint Rubber
Posts: 3777
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

With the eggdrop version 1.6.20 it's very easy to get this with a simple 'bind cron', for example the following code will send a message to '#some_channel' every 10 minutes.

Code: Select all

bind cron - {*/10 * * * *} cron:ad

proc cron:ad {minute hour day month weekday} {
	putserv "PRIVMSG #some_channel :whatever you want!"
}
The 'cron' is easily customizable to whatever you need.
Once the game is over, the king and the pawn go back in the same box.
Post Reply