<- CRPL reference <- Utility Commands
| Arguments | Result | Notation | 
|---|---|---|
| - | Invocation Count |   – i1  | 
	
Pushes the number of times the Core has been invoked. This count resets each mission load. The first call returns 1. Useful for doing something the first time a mission loads, and each time a mission loads.
if (InvocationCount eq (1))
   #Only do this on the first invocation each time the mission loads.
   Trace("Something")
endif