Get.dir

From Sierra WikiNew
Revision as of 00:03, 3 June 2024 by Andrew Branscom (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The get.dir command stores a screen object's direction in a variable.

Syntax

get.dir(obj oA, var vDIR);

Remarks

Variable vDIR is assigned the direction of screen object oA. The value will be between 0 and 8:

File:MovingObjects.png

Possible Errors

AGI does not check that object number oA is a valid screen object. If it is not, the returned value will be meaningless.

Example

Code:
get.dir(o12, v50);
[ v50 now equals the direction of o12

Technical Information

Required Interpreter Version: Available in all AGI versions.
Byte-Code Value: 87 (0x57 hex)

See Also

set.dir