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.

can i make auto open mode

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

can i make auto open mode

Post by 4mirc »

is it possible to make my bot auto open mode every 1 minute or 15 min

the time and channel let me choice them :) make it for multiple channel

example : Sysop sets mode: +ntk-RMmcisk auto-open-mode

and thx
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

Post by 4mirc »

:roll: 12 viewed this post but no 1 reply ??

thx
User avatar
DragnLord
Owner
Posts: 711
Joined: Sat Jan 24, 2004 4:58 pm
Location: C'ville, Virginia, USA

Post by DragnLord »

4mirc wrote::roll: 12 viewed this post but no 1 reply ??

thx
You're welcome.
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

Post by 4mirc »

hi DragnLord

i need help in script not in THX word i guess right ?

if u don't know how or u can't make it u can say that .

if u replied about my script better than

i guess this forum for help maybe :)

No problem Thats mean no 1 can make this tcl script
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

4mirc wrote:No problem Thats mean no 1 can make this tcl script
It means, as per the sticky, that you wait VERY patiently and not bump for the sake of getting attention else it's into the Jank Yard. ;)
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
DragnLord
Owner
Posts: 711
Joined: Sat Jan 24, 2004 4:58 pm
Location: C'ville, Virginia, USA

Post by DragnLord »

Alchera wrote:
4mirc wrote:No problem Thats mean no 1 can make this tcl script
It means, as per the sticky, that you wait VERY patiently and not bump for the sake of getting attention else it's into the Jank Yard. ;)
You showed no courtesy to wait for a decent amount of time before making a whiny post about no replies (your second post came less then 4 hours after first post), around here that is about the same as making demands upon persons you are not compensating for their time and efforts.

These forums are read by search bots, which is likely where most of the views are from.

I had considered making a script to fulfill your initial request, until I read your second post.

Perhaps another person here would still consider making this for you.

Another idea would be to read the documentation that comes with eggdrop and also this website to attempt creating your own script.
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

Post by 4mirc »

its my 3 or 4 post and no 1 replied tell now :)


and if u like to make it thx u ... if not also thx alot

its just a command not a war ;) i will not lose any thing if u don't make it

i need help so i found this forum to help me :)
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

This is something for you to start with:

Code: Select all

bind time - * set:modes

proc set:modes args {
 puthelp "mode #channel +ntk-RMmcisk auto-open-mode"
}
This will set the mode on #channel every minute.
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

Post by 4mirc »

thx thx alot Sir_Fz

i have question .. how can i add more channels and to make the time 10

minutes and more?
User avatar
Papillon
Owner
Posts: 724
Joined: Fri Feb 15, 2002 8:00 pm
Location: *.no

Post by Papillon »

Using Sir_Fz example:

Code: Select all

set channelsyouwant "#chan1 #chan2 #chan3"
bind time - "?0 *" set:modes

proc set:modes args {
 foreach c [list $channelsyouwant] {
  puthelp "mode $c +ntk-RMmcisk auto-open-mode"
 }
}
Elen sila lúmenn' omentielvo
User avatar
Nor7on
Op
Posts: 185
Joined: Sat Mar 03, 2007 8:05 am
Location: Spain - Barcelona
Contact:

Post by Nor7on »

i have other code.

Code: Select all

#set the channel/s when u want run the tcl.
#ex: "#mychan1 #mychan2 #mychan3"

set channels "#mychan1 #mychan2"

#set the channel modes

set openmodes "nt-mirs"

bind time - "?0 *" mode:open

proc mode:open args {
	global channels openmodes
foreach channel $channels {

 putquick "MODE $channel +$openmodes"
	}
}
putlog "OpenChanModes.tcl v1.0 Working Fine by Nor7on"
:wink:
User avatar
4mirc
Voice
Posts: 37
Joined: Fri May 16, 2008 11:11 pm
Contact:

Post by 4mirc »

thx Papillon Nor7on

im testing the sceipts :)

thx alot
Post Reply