This version is out of date, covering development from v5.0.0 to v5.12.2. It is maintained here only for inbound reference links from elsewhere.

Jump to the current version of aTbRef.

Tinderbox Icon

Agents and intrinsic attributes

Some attributes are intrinsic to aliases. For instance, this allows an alias to have a different $Xpos and $Ypos from its original and thus a different location on the agent's map to that of the aliases' original.

In an agent action, it may tus sometimes be necessary to use the 'original' designator to set the original note's attribute and not the value of the same which is intrinsic to the alias. In an agent action:

$MyString = "hello" 

…sets $MyString both original and alias as the user attribute is not intrinsic. But:

$Xpos = 4; 

…would set only the $Xpos of the alias, whilst this would set only the original's value:

$Xpos(original) = 4; 

Either of the following would set both:

$Xpos = 4;$Xpos(original) = 4; 

$Xpos = 4;$Xpos(original) = $Xpos; 

See a list of intrinsic attributes.


Possible relevant notes (via "Similar Notes" feature):


A Tinderbox Reference File : Agent Queries : Agents and intrinsic attributes