ADV Zeus Script

by

Belbo Description: When playing as Zeus you might notice that you can't interact with editor placed objects/units or with units spawned during the mission or even with respawned players. That's why I wrote this very small script to counteract that. Features: This script adds (almost) all editor placed objects to the zeus interface, so you can edit them as Zeus. Additionally it checks every five seconds if units have been spawned and makes them editable as well. That way you always have a way to see or interact with your players or units spawned by scripts like UPSMON. Installation: 1. put the ADV_zeus.sqf into your missionfolder. 2. put this in your mission's init.sqf (create if necessary) ////////// ADV_Zeus-Script by Belbo start ////////// if (isServer) then { //CuratorModuleName = your curator module name; true = boolean, if civilians should be editable by zeus as well - set to false if you don't want civilians to be editable. [CuratorModuleName,true] execVM "ADV_zeus.sqf"; }; ////////// ADV_Zeus-Script by Belbo end ////////// 3. Make sure to replace "CuratorModuleName" with the name of your actual curator module. 4. Repeat for additional curator modules. 5. Start your mission and have fun with all the stuff you have placed in the editor and all the respawning players and whatnot. :) Usage: There's a sample mission included. Change log: v1.02: - small change to the while-loop (thanks to Psychobastard) v1.01: - reduced network traffic (thanks to Moricky) v1.0: - Initial release Download Link: - ADV_Zeus_v102.Stratis.rar