Scriptname _00E_AutoSaveTrigBoxScript extends ObjectReference  


int DoOnce

Event OnTriggerEnter(ObjectReference akActionRef)

	if ( DoOnce == 0 )
		if(akActionRef == Game.GetPlayer())

			Game.RequestAutoSave()

			DoOnce = -1

		endif
	endif

EndEvent