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.
Old posts that have not been replied to for several years.
-
gnagis
- Voice
- Posts: 19
- Joined: Fri May 28, 2004 5:48 am
Post
by gnagis »
is there a script out for this or how do you do this?
like i want to be abel to type
!gnagis
and the bot will then call a webpage like this
http://server.com/script.php?user=gnagis
how do i do this??
it dosent need to get annything back becouse its just to change status on a page without doing it manualy

got root?
-
metroid
- Owner
- Posts: 771
- Joined: Wed Jun 16, 2004 2:46 am
Post
by metroid »
Well, if you mean this...
Code: Select all
bind pub - !gnagis pub:gnagis
proc pub:gnagis {nick host hand chan} {
putquick "PRIVMSG $chan :http://server.com/script.php?user=gnagis"
}
-
gnagis
- Voice
- Posts: 19
- Joined: Fri May 28, 2004 5:48 am
Post
by gnagis »
nahh i meant that the eggdrop should go to a page...
but i dont need any result back... just as it calls the php script
got root?