[dismiss]
This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.
Making a GameMode script run at second intervals
Jump to navigation
Jump to search
This page explains how to make a non-quest GameMode script run once every second, or two seconds, or whatever.
scn EasierRunsEverySecondScripy float Timer begin GameMode if Timer <= 0 set Timer to 2 ;Code endif set Timer to Timer - GetSecondsPassed end