i have a problem to sort a list,
i would like to sort the list for the best time on top, the message wich contain the avatar name and the time lokks exact like this cecino Cicerone 03:02,
i read all the wikis and search the forum, i try 4 days too got this, but maybe my english is to bad or i have something wrong in my had and getting stupid on this, i try llList2integer and some sort funktions but it not work, thanks for a tip!!!!! or a code sniped
here is the script, its not so nice at this stadium:
list racer;
vector v_textcolor = <1,1,1>;
default
{
state_entry()
{
llListen(6041,"","",""
;}
touch_start(integer total_number)
{
llSay(0, "AvaRacer List:" );
integer len = llGetListLength( racer );
integer i;
for( i = 0; i < len; i++ )
{
llSay(0, llList2String(racer, i) );
}
llSay(0, "Total = " + (string)len );
}
listen(integer channel,string name, key id, string message)
{
if(message=="passta"

{
state on;
}
}
}
state on
{
state_entry()
{
llListen(5002,"","",""
;}
listen(integer channel,string name,key id,string message)
{
if(message!="00:00"

{
llSetText((string)(message),v_textcolor,TRUE);
racer+=message;
state default;
}
}