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.

This message is relayed every 30 minutes. INSANITY

General support and discussion of Eggdrop bots.
Post Reply
t
torin

This message is relayed every 30 minutes. INSANITY

Post by torin »

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
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

you could always make them set a password, or set a password for them :o
t
torin

hrm

Post by torin »

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
User avatar
YooHoo
Owner
Posts: 939
Joined: Thu Feb 13, 2003 10:07 pm
Location: Redwood Coast

Post by YooHoo »

Code: Select all

unbind msg - pass *msg:pass
:o im curious if something this simple could be used......
t
torin

Post by torin »

YooHoo wrote:

Code: Select all

unbind msg - pass *msg:pass
:o 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
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

.chpass <handle> [password]
or if you have alot of users you can use this script to set a pwd on all

Code: Select all

foreach u [userlist] {
  if {[getuser $u PASS] == ""} {
    chpass $u [randstring 10]
  }
}
w
whittinghamj
Op
Posts: 103
Joined: Sun May 21, 2006 4:50 pm

Post by whittinghamj »

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.
User avatar
krimson
Halfop
Posts: 86
Joined: Wed Apr 19, 2006 8:12 am

Post by krimson »

did you read the previous post?
greenbear wrote:

Code: Select all

foreach u [userlist] {
  if {[getuser $u PASS] == ""} {
    chpass $u [randstring 10]
  }
}
(this is how you set a random password for all users)
Post Reply