A quick note that might interest some users, if some of your contacts sometimes ask you to send them the song you are listening to and would like to do that automatically, here is a small piece of code that will do it:
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd,Origin,Message,MessageKind)
{
if( MsgPlus.RemoveFormatCodes(Message) == "!getsong")
{
ChatWnd.SendMessage("/sendwinampsong");
}
}
I guess it was already in the plans to add that feature to this script, so that's just meanwhile