IsActionRef

From the Fallout3 GECK Wiki
Revision as of 13:14, 5 January 2010 by imported>Mikla
Jump to navigation Jump to search

Syntax:

IsActionRef ObjectRefID 

Example:

IsActionRef player 

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

For example:

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