Convert np line to dll format? |
Convert np line to dll format? |
bbsan |
Apr 2 2009, 03:12 PM
Post
#1
|
Newbie Group: Members Posts: 8 Joined: 1-April 09 Member No.: 704 |
I used to have $dde(mplug,format,"Is_Now_Rocking_Out_to:_%name_[%min:%sec~m/%br~Kbps/%sr~KHz]")
But how is this done in dll style? |
Serge |
Apr 2 2009, 05:21 PM
Post
#2
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
See readme:
CODE The ac.dll provides the following functions: mexec -- executes AMIP command meval -- evaluates AMIP variable or command and returns the string result ... Old $dde command: //echo -s song title: $dde(mplug,var_name) New $dll command: //echo -s song title: $dll(ac,meval,var_name) |
bbsan |
Apr 2 2009, 06:25 PM
Post
#3
|
Newbie Group: Members Posts: 8 Joined: 1-April 09 Member No.: 704 |
See readme: CODE The ac.dll provides the following functions: mexec -- executes AMIP command meval -- evaluates AMIP variable or command and returns the string result ... Old $dde command: //echo -s song title: $dde(mplug,var_name) New $dll command: //echo -s song title: $dll(ac,meval,var_name) Your not really helping here Serge, i already checked that. According the help file it should look like this: $dll(ac,meval,format,"Is_Now_Rocking_Out_to:_%name_[%min:%sec~m/%br~Kbps/%sr~KHz]") But then mIRC gives an error "* Invalid parameters: $dll" |
Serge |
Apr 2 2009, 07:37 PM
Post
#4
|
AMIP Developer Group: Root Admin Posts: 935 Joined: 12-March 06 Member No.: 1 |
First of all you are not a paying customer, so you should not demand anything from me. Supporting you or not is my free will.
Try this: CODE $dll(ac,meval,format "%name_%min:%sec") "," is not needed as in $dde because $dll takes only 3 arguments and comma is the arguments separator. |