Difference between revisions of "GetDistance"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>JOG
(Returns distance to a Reference (plus more examples))
imported>JOG
m
Line 1: Line 1:
Returns the distance the object has to the Reference "ObjectID".
Returns the distance the calling object has to the Reference "ObjectID".


'''Syntax:'''
'''Syntax:'''

Revision as of 09:46, 24 May 2006

Returns the distance the calling object has to the Reference "ObjectID".

Syntax:

GetDistance ObjectID

Examples:

GetDistance TestMarkerRef
Set distance to Getdistance Player
Ref Actor
Float Distance 
Begin OnActivate 
  set Actor to GetActionRef 
  set distance to 
  if Getdistance Actor > 70
    messagebox "Come closer my friend"
  endif
end