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.

gseen commands [solved]

Discussion of Eggdrop's code and module programming in C.
Post Reply
T
Torrevado
Op
Posts: 101
Joined: Wed Aug 02, 2006 6:29 pm

gseen commands [solved]

Post by Torrevado »

Is it possible to change !seen for another command? I tried in gseen.conf but it doesn't work...
Last edited by Torrevado on Sun Mar 25, 2007 11:19 am, edited 1 time in total.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

You'd have to edit the source.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
D
Dnevers
Voice
Posts: 5
Joined: Fri Sep 01, 2006 4:16 pm

Post by Dnevers »

Do you wish to change the command that triggers the seen command? I don't know if its the right way to do it but I added the command !stalk by adding a line in the binds section in gseen.conf

Code: Select all

catch "unbind pub - !seen *pub:!seen"
catch "unbind pub - !seennick *pub:!seennick"
catch "unbind pub - !seenstats *pub:!seenstats"
bind pub - ${cmdchar}seen *pub:!seen
bind pub - ${cmdchar}stalk *pub:!seen
bind pub - ${cmdchar}seennick *pub:!seennick
bind pub - ${cmdchar}seenstats *pub:!seenstats
!seen or !stalk now triggers a seen.
T
Torrevado
Op
Posts: 101
Joined: Wed Aug 02, 2006 6:29 pm

Post by Torrevado »

Yes! It works, thanks :wink:

I just changed the line:

Code: Select all

bind pub - ${cmdchar}seen *pub:!seen
for this one:

Code: Select all

bind pub - ${cmdchar}newcommand *pub:!seen
So, !seen command doesn't work anymore, but the new one does :)
Post Reply