Pawn Search params..

Farmerbob

Active Member
Is there a list of params to use in the search when you are looking at

Pawn[params....] ?

I tried doing a couple of searchs on the forums, but they came up blank, and I was looking through the Wiki and couldn't seem to find a reference to the param list.

also is there a way to get back a list of Pawn Ids other than manually scanning through all the mobs in a given radius?

Thanks in advance

- FB
 

Amadeus

The Maestro
Staff member
http://vg.isxgames.com/wiki/index.php?title=Pawn_Search_Parameters

plus the stuff I recently added:

Code:
* Added new arguments to the "Pawn Search Parameters"
  1. Pawn[from,<X>,<Y>,<Z>,...]         (Uses the location given as the center for all location based pawn searching)
     Pawn[from,target,...]              (Uses your current target as the center for all location based pawn searching)
     (NOTE: The 'from' argument must come BEFORE the following 'location based' search terms, which are affected by
            this setting:  Radius, Radiusr, xyrange, and zrange.)
  2. Pawn[NoOwner,...]                  (Taking your other parameters into account, returns the first pawn with no 'owner')
     (NOTE: This only works for attackable NPCs.)
 
Top Bottom