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.

A Auto-Timer Advertise Script

Old posts that have not been replied to for several years.
Locked
T
TakaShi^^
Voice
Posts: 36
Joined: Sat Apr 30, 2005 4:20 am
Location: Singapoe

A Auto-Timer Advertise Script

Post by TakaShi^^ »

Hello, who have a timer script..like those normal /timer 0 xxx /msg #channelname <yourmessage>

ANyone Have a script tat make for Bots Advertise =)
Im learning!!!
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Check the TCL archive as the READ ME BEOFRE YOU POST tells you todo before making dumb ass requests for scripts that already exist. :evil:
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
awyeah
Revered One
Posts: 1580
Joined: Mon Apr 26, 2004 2:37 am
Location: Switzerland
Contact:

Post by awyeah »

This is a normal timer script, it will be executed only once after 1 minute:

Code: Select all

timer 1 my:proc

proc my:proc {} {
 putserv "PRIVMSG #my_channel :Hello!"
}
This is a continuous timer script, it will be executed regularly after an invterval of 1 minute:

Code: Select all

timer 1 my:proc

proc my:proc {} {
 putserv "PRIVMSG #my_channel :Hello!"
 timer 1 my:proc
}
·­awyeah·

==================================
Facebook: jawad@idsia.ch (Jay Dee)
PS: Guys, I don't accept script helps or requests personally anymore.
==================================
Locked