Project

General

Profile

Pawn Search Parameters

Parameters

  • byDist
    • Sorts the pawns by distance before doing your search (DEFAULT).
  • byType
    • Sorts the pawns list by 'type' before doing your search
  • byName
    • Sorts the pawns list by 'Name' before doing your search
  • byLevel
    • Sorts the pawns list by 'Level' before doing your search
  • pc
    • Returns the nearest PC
  • npc
    • Returns the nearest NPC
  • AggroNPC
    • Returns the nearest NPC that is KOS to you
  • QuestNPC
    • Returns the nearest QuestNPC
  • Trainer
    • Returns the nearest 'trainer' type NPC
  • Merchant
    • Returns the nearest 'merchant' type NPC
  • Pet
    • Returns the nearest pet which is not MyPet
  • MyPet
    • Returns your pet or NULL if you don't have a pet
  • Crafting Station
    • Returns the nearest crafting station
  • resource
    • Returns the nearest resource node
  • corpse
    • Returns the nearest corpse
  • Clickable
    • Returns the nearest 'clickable' type pawn
  • Group Member
    • Returns the nearest group member
  • me
    • Returns the current player (as an 'pawn' object)
  • NoOwner
    • Taking your other parameters into account, returns the first pawn with no 'owner'.
  • level,#
    • Returns the nearest pawn that is of the level given
  • levels,#,#
    • Returns the nearest pawn that is of a level equal to or between the two numbers given
  • id,#
    • Returns the pawn with the ID number that matches the one given
  • notid,#
    • Excludes the pawn with the ID number that matches the one given
  • race,<string>
    • Returns the nearest pawn of the race given (case insensitive)
  • radius,#
    • Returns the nearest pawn within the given three-dimensional radius (Your character being the center, out to the range specified.)
  • radiusr,#,#
    • Returns the nearest pawn within the given three-dimensional radius (The first number being the inner range and second number being the outer range.)
  • xyrange,#
    • Returns the nearest pawn within the given two-dimensional radius (range) from your present position. Currently, 'range' is aliased to be equivalent to 'xyrange'
  • zrange,#
    • Returns the nearest pawn within the given radius (range) on the Z-axis from your present position.
  • from,<X>,<Y>,<Z>
    • Uses the X/Y/Z location given as the "center" for all location based pawn searching. This argument must come before the following 'location based' search terms, which are affected by this setting: Radius, Radiusr, xyrange, and zrange.
  • from,target
    • Uses your current target's location as the "center" for all location based pawn searching. This argument must come before the following 'location based' search terms, which are affected by this setting: Radius, Radiusr, xyrange, and zrange.
  • <string>
    • Returns the nearest pawn with a name that contains the string given (case insensitive)
  • exactname, <name>
  • exact, <name>
    • NOTE: This works for anything that uses pawn search routines (ie: /where,etc.)