I see most of the bard twisting scripts you have to have a fixed # of song parameters. is there a way to have all songs show up as a single parameter?
/macro twist 1 2 3 4
how I would like to see it
/macro twist 123453453452345345345
which would allow us to have any order we wanted and as many songs in a particular order that we wanted... like in the example above slot 1 could be 49 selo's slot 2 could be amp and 345 the combat mix
I have tried to do something like this:
#define Songlist $p0
#Define SongNum v1
/varset $SongNum 1
Sub Main
/delay 3
/stopsong
/delay 3
/if $Songlist=="" /endmacro
:Sing
/if n $int($SongNum) > $strlen ($songList) /varset SongNum 1
/varset v0 mid($SongNum,1,$Songlist)
/cast $v0
/delay 4
/doevents
/delay 27
/stop
/delay 3
/varadd SongNum 1
/goto :Sing
/return
but it seems like I am getting and invalid compare.
any ideas?



