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.
k
kare
Post
by kare » Sun Jul 21, 2002 4:07 pm
Hello, I need an allmusic tcl search script for my eggdrop. It would work like this:
<XXX> !artist the faint
<YYY> AMG Artist Search:
http://www.allmusic.com/cg/amg.dll?p=amg&sql=1the|faint
Note the replacement of spaces into '|'.
My friend made it for mIRC, so here it is so your work is easier.
I couldn't find a google script that I could edit, the one I use visits the first result and posts its link.
Thanks in advance, hoping this helps some people.
ppslim
Revered One
Posts: 3914 Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England
Post
by ppslim » Sun Jul 21, 2002 5:19 pm
Code: Select all
bind pub - !artist pub:artistweb
proc pub:artistweb {nick uh hand chan arg} {
puthelp "PRIVMSG $chan :AMG Artist Search: http://www.allmusic.com/cg/amg.dll?p=amg&sql=1 [join [split $arg] |]"
}
k
kare
Post
by kare » Mon Jul 22, 2002 12:10 am
Thanks a lot for the fast reply. It works great. I had to remove a space between the link and "[join" so the URL is clickable.
Final code: