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.

how to do simple !commands

Old posts that have not been replied to for several years.
Locked
f
fajja
Voice
Posts: 14
Joined: Sun May 08, 2005 7:48 am

how to do simple !commands

Post by fajja »

hi i have tried all to day to get a working script for my eggdrop bot.
all i want it to do is for example when a user on a channel types !website
the bot reponds with a reply saying "website blah blah"

none of my attempt worked :(

thanks for any help :? :?
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

Code: Select all

bind pub - !website pub:website

proc pub:website {nick uhost hand chan text} {
 putserv "PRIVMSG $chan :website blah blah"
}
f
fajja
Voice
Posts: 14
Joined: Sun May 08, 2005 7:48 am

Post by fajja »

works a treat! thanks man :lol:
Locked