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.
Help for those learning Tcl or writing their own scripts.
pektek
Halfop
Posts: 61 Joined: Sat Jul 01, 2023 4:51 pm
Post
by pektek » Sun Aug 10, 2025 3:51 pm
I don't know English very well. I'm sorry.
Can I add a voice with a nickname without a password using Eggdrop?
CrazyCat
Revered One
Posts: 1357 Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:
Post
by CrazyCat » Sun Aug 10, 2025 6:29 pm
Just add the user in the userlist and give him the good attr:
Code: Select all
.+user myfriend dummy!*@*
.chattr myfriend ++g #channel
The previous commands create an user "myfriend" (handle, or unique identifier in the eggdrop userlist) recognized with nick dummy and make him autovoiced on #channel
pektek
Halfop
Posts: 61 Joined: Sat Jul 01, 2023 4:51 pm
Post
by pektek » Mon Aug 11, 2025 4:30 am
Should we write the nickname where it says myfriend?
myfriend nickname
CrazyCat
Revered One
Posts: 1357 Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:
Post
by CrazyCat » Mon Aug 11, 2025 5:00 am
I think you have to read the basics and try to understand. or use .help +user :
Code: Select all
### +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.
You can use what you want for the handle, it just must be unique in the eggdrop. So you can use the nick:
Code: Select all
.+user nick nick!*@*
.chattr nick +g #channel
pektek
Halfop
Posts: 61 Joined: Sat Jul 01, 2023 4:51 pm
Post
by pektek » Mon Aug 11, 2025 6:06 am
Thank you for your help Crazycat
thank you