I have the following Code that removes everyone but the first index
Thanks for any advise you may have,.
List gstav = LOTS OF PEOPLES;
value os a string representing the avatars name
integer fnd = llListFindList(gstav, [value]); // this line appears to give me the proper index
llSay(0,"Found Request for " + value + " is " + (string)fnd);
if (fnd != -1)
{
gstav = llDeleteSubList(gstav,fnd, 1);
// the line above doesnt remove the name correctly?
}
