Thread: array search
View Single Post
  #1  
Old 12-27-2005, 02:15 AM
jake13jake jake13jake is offline
Former Classic Staff
jake13jake's Avatar
Join Date: Dec 2002
Location: Northwest Vermont
Posts: 1,452
jake13jake will become famous soon enough
array search

Stefan, you should add this, it can be used like findplayer(account), but with a lot more flexibility.

NPC Code:

//Script made by jake13jake
//on Friday, December 9th,
//also the day of his sister's 21st birthday,
//at 2:45 in the morning!

function find(arr,attr,val) {
for (i=0; i<arr.size(); i++) {
if (arr[i].(@attr) == val)
return arr[i];
}
return -1;
}

Reply With Quote