btmux-0.6-rc4/doc/
btmux-0.6-rc4/event/
btmux-0.6-rc4/game/
btmux-0.6-rc4/game/maps/
btmux-0.6-rc4/game/mechs/
btmux-0.6-rc4/game/text/help/
btmux-0.6-rc4/game/text/help/cat_faction/
btmux-0.6-rc4/game/text/help/cat_inform/
btmux-0.6-rc4/game/text/help/cat_misc/
btmux-0.6-rc4/game/text/help/cat_mux/
btmux-0.6-rc4/game/text/help/cat_mux/cat_commands/
btmux-0.6-rc4/game/text/help/cat_mux/cat_functions/
btmux-0.6-rc4/game/text/help/cat_templates/
btmux-0.6-rc4/game/text/wizhelp/
btmux-0.6-rc4/include/
btmux-0.6-rc4/misc/
btmux-0.6-rc4/python/
btmux-0.6-rc4/src/hcode/btech/
btmux-0.6-rc4/tree/
& btsetxy()
 
  Syntax: btsetxy(<UnitDB>,<MapDB>,<x>,<y>[,<z>])
 
  This function sets the position of <UnitDB> to hex <x>,<y> and 
  optionally at an altitude of <z>.
 
  If the argument <z> is omitted, the function determines the 
  elevation of the hex <x>,<y> and sets <z> to that value.
 
	Note: In that the function automatically ascertains the value of z, 
	it is generally wisest to omit this argument.
 
  The function returns 1 if successful.
 
  Error Messages:
 
  * If <UnitDB> is not a valid RS unit the function returns #-1 
     INVALID TARGET
  * If <MapDB> is not a valid map object the function returns #-1 
    INVALID MAP
  * If <x> is outside the boundaries of the map the function returns 
    #-1 X COORD
  * If <y> is outside the boundaries of the map the function returns 
    #-1 Y COORD
  * If <z> is > 10000 the function returns #-1 Z COORD 
 
  Example:
  Given that #1234 is a mech and #62 is a map object
 
  > think btsetxy(#1234,#62,10,10,0)
  1