Difference between revisions of "UO.ScanItems"

From OpenEUO
Jump to: navigation, search
(Created page with " local nCnt = UO.ScanItems(bVisibleOnly) Scans all objects in client memory and returns the number of items found. Invisible objects may be excluded using the sole parameter. ...")
 
Line 2: Line 2:
 
Scans all objects in client memory and returns the number of items found.  Invisible objects may be excluded using the sole parameter.  Once objects are scanned, their parameters are discovered by iterating over the UO.GetItem command, increasing the index from 0 to nCnt - 1.
 
Scans all objects in client memory and returns the number of items found.  Invisible objects may be excluded using the sole parameter.  Once objects are scanned, their parameters are discovered by iterating over the UO.GetItem command, increasing the index from 0 to nCnt - 1.
  
[[UO.GetItems]]
+
[[UO.GetItem]]

Revision as of 10:55, 8 October 2010

 local nCnt = UO.ScanItems(bVisibleOnly)

Scans all objects in client memory and returns the number of items found. Invisible objects may be excluded using the sole parameter. Once objects are scanned, their parameters are discovered by iterating over the UO.GetItem command, increasing the index from 0 to nCnt - 1.

UO.GetItem