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.
Discussion of Eggdrop's code and module programming in C.
Torrevado
Op
Posts: 101 Joined: Wed Aug 02, 2006 6:29 pm
Post
by Torrevado » Sat Feb 24, 2007 7:43 pm
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.
Alchera
Revered One
Posts: 3344 Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:
Post
by Alchera » Sun Feb 25, 2007 8:05 am
You'd have to edit the source.
Add [SOLVED] to the thread title if your issue has been.
Search |
FAQ |
RTM
Dnevers
Voice
Posts: 5 Joined: Fri Sep 01, 2006 4:16 pm
Post
by Dnevers » Wed Mar 07, 2007 2:35 pm
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.
Torrevado
Op
Posts: 101 Joined: Wed Aug 02, 2006 6:29 pm
Post
by Torrevado » Sat Mar 10, 2007 1:06 pm
Yes! It works, thanks
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