LlList2List
De DigiWiki.
Version du 25 août 2012 à 18:52 par Djphil  (discuter | contributions)
				
			list numbers = [1, 2, 3, 4, 5]; default { state_entry() { integer index = llListFindList(numbers, [3]); if (index != -1) { list three_four = llList2List(numbers, index, index + 1); llOwnerSay(llDumpList2String(three_four, ",")); // Object: 3,4 } } }


