We are running one of your hosted private hives and currently everything is going well. We did encounter an issue which we have researched and tested the examples given here and other sites with no success. When creating the Protective Dome using your examples we are greeted with the "Waiting for a host" splash screen. We have a dome.sqf with the information provided at "dayz.st/w/Main_Page" and modified the mission.sqf to include the statements under the Sensors. No matter what we try we receive the same results. This is what we have in the mission.sqf. The item numbers are correct and the dome.sqf is located in the root folder, I've seen people creating a subfolder for the safe zones. Assuming this is done just to keep it organized. mission.sqf: };class Item4position[]={12670,0.001,8373.25}; a=150;b=150;activationBy="WEST";repeating=1;interruptable=1;age="UNKNOWN";name="dome1";expCond="(vehicle player) in thislist;";expActiv="dome = [] execVM ""dome1.sqf"";";expDesactiv="terminate dome; titleText [""You've left the no fly zone."", ""Termination has been deactivated."", 3];";class Effects};};};class Intro dome.sqf:// Below, put the UID of player(s) where it says pasteUIDhere that you want to give access to the domeif ((getPlayerUID player) in ["PlayerUID"]) exitWith { titleText ["Welcome to Base", "PLAIN DOWN", 3];};// What happens if unauthorized players get into the dometitleText ["You are entering restricted area, please turn around and leave.", "PLAIN DOWN", 3];sleep 5;titleText ["Get away a.s.a.p.", "PLAIN DOWN", 3];sleep 3;titleText ["5 sec", "PLAIN DOWN", 3];sleep 2;titleText ["You have 3 seconds left", "PLAIN DOWN", 3];sleep 3;titleText ["Good night.", "PLAIN DOWN", 3];sleep 1;player setDamage 1; Any assistance would be appreciated, Thank you.