ive installed this dome protection : http://dayz.st/w/Protected_Dome
now i am having trouble getting it to work on my server.
ive installed it fine as no errors come up in game but when people run into the base , nothing comes up for them , here is the info
this is what ive added to my sensors in my mission.sqm
class Item9
{
position[]={13700.2,2967.28,0.128};
a=80;
b=80;
rectangular=1
activationBy="ANY";
repeating=1;
interruptable=1;
age="UNKNOWN";
name="dome";
expCond="(vehicle player) in thislist;";
expActiv="dome = [] execVM ""domes/admindome.sqf"";
expDesactiv="terminate dome; titleText [""You've left the dome"", ""PLAIN DOWN"", 3];
class Effects
{
};
};
This is what is in my domes/admindome.sqf
// Below, put the UID of player(s) where it says pasteUIDhere that you want to give access to the dome
if ((getPlayerUID player) in ["38007302"]) exitWith {
titleText ["Welcome home", "PLAIN DOWN", 3];
};
// What happens if unauthorized players get into the dome
titleText ["You are entering restricted area, leave.", "PLAIN DOWN", 3];
sleep 6;
titleText ["Are you blind? GET OUT", "PLAIN DOWN", 3];
sleep 6;
titleText ["Still not listening, huh?", "PLAIN DOWN", 3];
sleep 6;
titleText ["You have 5 seconds left", "PLAIN DOWN", 3];
sleep 6;
titleText ["Good night.", "PLAIN DOWN", 3];
sleep 3;
player setDamage 1;
Any one able to tell me what i have done wrong?