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.

Help me please

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
C
CedricRyan
Voice
Posts: 1
Joined: Thu Dec 21, 2023 8:37 am

Help me please

Post by CedricRyan »

Hello everyone, I'm looking for a straightforward script or solution that can automate the process of sending a message to a specific person at regular intervals, specifically every 80 minutes. The purpose is to streamline communication without manual intervention. If anyone has experience with creating or implementing such scripts, your guidance or a sample script would be greatly appreciated.
User avatar
CrazyCat
Revered One
Posts: 1240
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Re: Help me please

Post by CrazyCat »

Which message do you want to send to who ?
proc msg2x {} {
   putserv "PRIVMSG user :Hey I'm an automated message"
}
timer 80 msg2x 0 tmsg2x
Post Reply