Difference between revisions of "IsActionRef"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>Vswe
m (Added Search Terms)
imported>Antares
(Created a See Also section, added a link to GetActionRef because I was on this page and wanted to go there and couldn't do it as conveniently as I would have liked.)
 
Line 12: Line 12:
   endif  
   endif  
  end  
  end  
== See Also ==
[[GetActionRef]]
[[Category: Functions]]
[[Category: Functions]]
[[Category: Functions (CS)]]
[[Category: Functions (CS)]]

Latest revision as of 02:19, 13 October 2008

Syntax:

(bool) IsActionRef ObjectRefID 

Useful only inside an OnActivate block. Returns true if the specified ObjectRefID was the activator.

Example[edit | edit source]

begin OnActivate 
  if IsActionRef player == 1 
     MessageBox "You can't activate me, sucka!" 
  else 
     Activate 
  endif 
end 

See Also[edit | edit source]

GetActionRef