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.

Search found 1193 matches

by willyw
Wed Dec 29, 2021 2:50 pm
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

I'm glad you got something going. :) ... this one outputs blanks not sure why putserv "privmsg $chan :[getuser $uhandle INFO] " ... ... For each user, *IS* there anything to output for INFO ? ;) Look up just what that INFO is, here: https://docs.eggheads.org/mainDocs/tcl-commands.html#getu...
by willyw
Wed Dec 29, 2021 12:24 pm
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

... try other things ... ... To further explore and test - try other things. ... ... Experiment! ... Those are probably THE most important things that we've said. ;) They apply - always. No matter what the project is. I try to keep a spare bot running - just for playing with tcl. Because I KNOW tha...
by willyw
Wed Dec 29, 2021 12:16 pm
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

tested but it seems to output empty content For each user, *IS* there anything to output for INFO ? ;) Look up just what that INFO is, here: https://docs.eggheads.org/mainDocs/tcl-commands.html#getuser-handle-entry-type-extra-info Perhaps the script is returning just what it finds ... which is noth...
by willyw
Wed Dec 29, 2021 11:50 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

i tried this but im sure im not even close bind pub -|- !uinfo pub:userinfo proc pub:userinfo {nick host hand chan text} { foreach uhandle [userlist] { getuser $uhandle INFO } } The getuser command returns stuff. You want to see what that stuff is. Tell it to say it to some channel. Or to you in pm...
by willyw
Wed Dec 29, 2021 10:47 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

i mean i cant display all created users on channel or pm rather than in PL with .match * 99 provided by CrazyCat on support channel Sure you can. Without even creating a script file and sourcing it ... just for a quick demo, you can do: .tcl foreach n [userlist] {putserv "privmsg #somechannel ...
by willyw
Wed Dec 29, 2021 10:29 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

simo wrote:hm ok

from the looks of it its not optional to do that with tcl only on the partyline
Lost me. Sorry.
What do you mean?
by willyw
Wed Dec 29, 2021 10:10 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

Re: display all created users and their flags with pub or pm

i was wondering if it was possible to get the info from all ceated users and their flags ... [/code] Let's think about it ... First, have a look here: https://docs.eggheads.org/mainDocs/tcl-commands.html#userlist-flags That looks like it will get you a list of everybody in the bot, right? Since it ...
by willyw
Wed Dec 29, 2021 9:59 am
Forum: Script Requests
Topic: display all created users and their flags with pub or pm msg
Replies: 27
Views: 7927

Re: display all created users and their flags with pub or pm

... i got this from somewhere and edited it but it doesnt get all info of the created users bind pub m !stats pub_statsx proc pub_statsx {nick host hand chan arg} { global botnick set reco 0 foreach nick [chanlist $chan] { ... It's not looking at all the users in the bot's user list. It's looking a...
by willyw
Tue Dec 28, 2021 6:25 pm
Forum: Script Requests
Topic: public command for adding users to access list of eggdrop
Replies: 5
Views: 2863

Re: public command for adding users to access list of eggdr

I haven't run your code. However, I noticed a couple things that you might want to look into. ... proc pub_adduser {nick host handle channel testes} { set who [lindex $testes 0] ... lindex works on lists. $testes is a text string, not a list. So, it should be converted. Thus: set who [lindex [split ...
by willyw
Tue Dec 28, 2021 6:15 pm
Forum: Script Requests
Topic: public command for adding users to access list of eggdrop
Replies: 5
Views: 2863

Re: public command for adding users to access list of eggdr

... in partyline i did : .+user chanops .chattr chanops -|+o but it seems to give flag o for all channels where the bot sits not sure why, as we wanted to grant per channel access Do: .help chattr in the partyline. See: You can also change the flags for Usagi on a specific channel by supplying the ...
by willyw
Sat Dec 18, 2021 5:15 pm
Forum: Eggdrop Help
Topic: Eggdrop v1.9.2 Release Candidate 1
Replies: 1
Views: 3616

To see the original from which the above was copy-and-pasted, click here:

https://www.eggheads.org/news#news71

There, you can also find the download link.
by willyw
Sat Dec 18, 2021 5:13 pm
Forum: Eggdrop Help
Topic: Eggdrop v1.9.2 Release Candidate 1
Replies: 1
Views: 3616

Eggdrop v1.9.2 Release Candidate 1

Greetings Eggheads, Seasons Greetings, Eggheads! We have a holiday treat for you, the release candidate for version 1.9.2! We continue to tweak, fix, and upgrade the 1.9 release series, and 1.9.2 has lots of goodies in here for you to play with. Some of the big ticket items we want to highlight her...
by willyw
Thu Oct 28, 2021 11:13 pm
Forum: Eggdrop Help
Topic: Issue with the eggdrop filesystem
Replies: 8
Views: 6224

... So not sure if I should put in a bug report or something. If so please let me know?,... Regarding a bug report - I can't say. Sorry. I just don't know. I suppose though, that you could give this link: http://forum.egghelp.org/viewtopic.php?p=110411#110411 to the folks that you already chatted w...
by willyw
Wed Oct 27, 2021 3:50 pm
Forum: Eggdrop Help
Topic: Issue with the eggdrop filesystem
Replies: 8
Views: 6224

Solution through a TCL script,... Isn't that interesting? I hadn't thought that far - yet. I suppose that my brain stopped at thinking that it was something configurable in eggdrop. It almost sounds like they have encountered it in the past. ;) I suppose they have a reason for it being the way that...
by willyw
Sun Oct 24, 2021 10:25 am
Forum: Eggdrop Help
Topic: Issue with the eggdrop filesystem
Replies: 8
Views: 6224

Re: Issue with the eggdrop filesystem

... it keeps uploading the files with the following permissions: 0600 ... That reminded me of something in eggdrop.conf. Have you found and tried changing this? # Note that the default 0600 is the most secure one and should only be changed # if you need your files for shell scripting or other exter...