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.

How do I add a user to the bot, when they aren't in the chan

General support and discussion of Eggdrop bots.
Post Reply
E
EnglishExpress
Halfop
Posts: 40
Joined: Tue Aug 14, 2007 1:28 am

How do I add a user to the bot, when they aren't in the chan

Post by EnglishExpress »

It just tells me "so n so isn't in any channels I monitor" is there any way to add them when they are offline?
User avatar
rosc2112
Revered One
Posts: 1454
Joined: Sun Feb 19, 2006 8:36 pm
Location: Northeast Pennsylvania

Post by rosc2112 »

### +user <handle> [hostmask]
Creates a new user record for the handle given. The new user record will have no flags, an optional hostmask, and no password.
See also: -user, +host, -host


so in the partyline: .+user foobar nick!username@domain

The hostmask can have wildcards. Check the helpfile in the partyline.
p
panasonic
Voice
Posts: 25
Joined: Sat Sep 15, 2007 5:27 am

Post by panasonic »

finish adding user, I tried to list all users
but there is no .listuser .userlist nor .users

sorry, how do I list my users in partyline?
User avatar
iamdeath
Master
Posts: 323
Joined: Fri Feb 11, 2005 2:32 pm
Location: *HeLL*
Contact:

Post by iamdeath »

panasonic wrote:finish adding user, I tried to list all users
but there is no .listuser .userlist nor .users

sorry, how do I list my users in partyline?
type:

Code: Select all

.match * 999 
To check userlist.
|AmDeAtH @ Undernet
Death is only the *Beginning*...
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

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 »

panasonic wrote:finish adding user, I tried to list all users
but there is no .listuser .userlist nor .users

sorry, how do I list my users in partyline?
if you have enabled the use of the .tcl dcc command in your bot's conf file:

Code: Select all

.tcl return [userlist]
User avatar
DragnLord
Owner
Posts: 711
Joined: Sat Jan 24, 2004 4:58 pm
Location: C'ville, Virginia, USA

Post by DragnLord »

or you can use this script:

Code: Select all

bind dcc m userlist dcc_userlist

proc dcc_userlist { h i t } {
        putdcc $i "[userlist]"       
}
Post Reply