Possible to manually control global tick event?

Id like to user a server to control the tick event for objects, does anyone know how this might be done?

You can control the ticking on a per actor basis. No global setting as far as I know. For example, if you set an actor’s tick interval to 0.5f, the actor’s tick function will be called every 0.5 seconds. You can also assign functions that should be called along with the main tick function.