Creates a new list or updates an existing list with the specified index of the provided list removed.
There is currently no clean, easy way to remove an item from a list. This would provide a simple way to clear specific items from a list and reduce the currently needed loops and overhead to do this.
Example Useage:
list mylist = ["bob", "tom", "jack", "bill"];
mylist = llListRemove(mylist, llListFindList(mylist, ["jack"]));
Result:
mylist = ["bob", "tom", "bill"];