Hello world, I noticed that there is no page that lists all the functions like the http://www.creationkit.com/OnInit_%28Papyrus%29 event that are available in all scripts (I'm sure there are others but I forgot them). Shouldn't there be one? I would do it but I'm not sure what it would be called and which categories it would be in.
By the way, I just added the full syntax of all non-native functions to the wiki. It's quite interesting and educational to see how functions like ModObjectiveGlobal actually work, and it helped me understand why GetReference() as Actor is faster than GetActorReference(). I also discovered these two amusing functions in ObjectReference:
; Because Shane got tired of remembering which way to call thisbool Function IsEnabled() return !IsDisabled()EndFunction
I feel you, Shane.
; Returns self cast as an actoractor Function GetSelfAsActor() return self as ActorendFunction
This one isn't on the wiki, and for a good reason. It takes less effort to just type out "self as actor", and it runs faster. It's like they put this function in for devs who don't understand casting.