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/
& u()
 
  Syntax: u([<obj>/]<attr>[,<arg>]...)
 
  The u function evaluates an attribute, either from the object 
  performing the function or from another object you own, passing in 
  arguments and returning the result.
 
  When evaluating the fetched attribute, %# refers to the original 
  enactor and not the 'calling' object, and 'me' refers to the object 
  that supplied the attribute.
 
  Example:
 
  > @va me=Word is [extract(v(vb),add(%0,1),1)], arg2 is %1.
  > @vb me=This is a test of the u function.
  > say u(va,4,Testing 123)
  You say "Word is of, arg2 is Testing 123."
  > say u(va,7)
  You say "Word is function., arg2 is ."
  > say u(me/va,6,Foobar)
  You say "Word is u, arg2 is Foobar."
 
  See Also: s(), v(), get(), get_eval(), map()