| View previous topic :: View next topic |
| Author |
Message |
torin Guest
|
Posted: Fri Oct 08, 2004 8:17 am Post subject: This message is relayed every 30 minutes. INSANITY |
|
|
Can someone please tell me how to make my bots/botnet QUIT sending messages to everyone on the user list that say - Your password on me has not been set yet. Please set it by typing /msg mentat` PASS <password>. This message is relayed every 30 minutes.? its driving me nuts and I cant seem to find anyone with an awnser that works... the only scripts installed are netbots, im at a total loss and any help would be good
tia |
|
| Back to top |
|
 |
greenbear Owner
Joined: 24 Sep 2001 Posts: 733 Location: Norway
|
Posted: Fri Oct 08, 2004 10:16 am Post subject: |
|
|
you could always make them set a password, or set a password for them  |
|
| Back to top |
|
 |
torin Guest
|
Posted: Fri Oct 08, 2004 10:24 am Post subject: hrm |
|
|
| well the thing about it is these people dont even know there added to the bot, its set up in a chan that is +m with auto voice and i have a script that keeps a devoiced list kinda like a ban list so everyone who gets devoiced is addds to the bot with a +q-v flag... basicly i just want to disable it from msg'ing anyone for there pass |
|
| Back to top |
|
 |
YooHoo Owner

Joined: 13 Feb 2003 Posts: 939 Location: Redwood Coast
|
Posted: Fri Oct 08, 2004 11:13 am Post subject: |
|
|
| Code: | | unbind msg - pass *msg:pass |
im curious if something this simple could be used...... _________________
Johoho's TCL for beginners
 |
|
| Back to top |
|
 |
torin Guest
|
Posted: Fri Oct 08, 2004 11:26 am Post subject: |
|
|
| YooHoo wrote: | | Code: | | unbind msg - pass *msg:pass |
im curious if something this simple could be used...... |
well I just tried than and it dosent seem to work is there a way to make it so all new users have a certin pass? basicly anything to stop the msg'ing |
|
| Back to top |
|
 |
greenbear Owner
Joined: 24 Sep 2001 Posts: 733 Location: Norway
|
Posted: Fri Oct 08, 2004 3:33 pm Post subject: |
|
|
| Quote: | | .chpass <handle> [password] |
or if you have alot of users you can use this script to set a pwd on all
| Code: | foreach u [userlist] {
if {[getuser $u PASS] == ""} {
chpass $u [randstring 10]
}
} |
|
|
| Back to top |
|
 |
whittinghamj Op
Joined: 21 May 2006 Posts: 103
|
Posted: Mon May 22, 2006 12:24 am Post subject: |
|
|
i know this is two year olf post - but
i need the same answer. If there a way to auto set a users password?
thank you very much
god bless u all. |
|
| Back to top |
|
 |
krimson Halfop

Joined: 19 Apr 2006 Posts: 86
|
Posted: Mon May 22, 2006 1:29 am Post subject: |
|
|
did you read the previous post?
| greenbear wrote: | | Code: | foreach u [userlist] {
if {[getuser $u PASS] == ""} {
chpass $u [randstring 10]
}
} |
|
(this is how you set a random password for all users) |
|
| Back to top |
|
 |
|