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.

every 1 minute cycle

Old posts that have not been replied to for several years.
Locked
f
forever79
Voice
Posts: 18
Joined: Sat Jun 21, 2003 6:12 pm

every 1 minute cycle

Post by forever79 »

hi
what is your command ? ( every 1 minute ==> part #chan1 and join #chan1 )
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Using the bind time, but this wlll be verry irritating. Better do the *hop* thing in 5 minutes or something.
Once the game is over, the king and the pawn go back in the same box.
f
forever79
Voice
Posts: 18
Joined: Sat Jun 21, 2003 6:12 pm

thanx but ?

Post by forever79 »

what is the command ?
User avatar
Noam
Voice
Posts: 11
Joined: Tue Jun 03, 2003 7:55 am
Location: Netanya, Israel.
Contact:

Post by Noam »

timer 1 { putserv "part #chan1" }
will make the bot part the chan (and join it) in 1 minute.

a tcl that will loop this every minute will look like:

Code: Select all

proc partchan1 { } {
  putserv "part #chan1" 
  timer 1 partchan1
}
timer 1 partchan1

Noam Migdali
Sales Manager
Support Admin
Image Ltd.
f
forever79
Voice
Posts: 18
Joined: Sat Jun 21, 2003 6:12 pm

part and no join after 15-20 minutes

Post by forever79 »

proc partchan1 { } {
putserv "part #ayna"
timer 1 partchan1
}
timer 1 partchan1

bot starting but after 15-20 minutes part and no join
please help...
Locked