Waypoint/marker

BetterDeadThanZed

Valued Member!
I have created a survivor safe zone at Klen, where players can not shoot and there's resources for them to use, using a script I found elsewhere on these forums. Now I want to add a marker to the map to show players where it is, but when I add the marker, I get the good old "Wait for host" message.

Here is the section of my mission.sqm that has the safezone and marker. Maybe someone else sees something wrong?

class Sensors
{
items=3;
class Item0
{
position[]={11463.747,317.3078,11349.89};
activationBy="WEST";
repeating=1;
interruptable=1;
age="UNKNOWN";
name="zoneklen";
expCond="(player distance zoneklen) < 150;";
expActiv="TitleText[""Now entering Survivor Safe Zone"",""PLAIN DOWN""]; placevault = false;";
expDesactiv="TitleText[""Now leaving Survivor Safe Zone"",""PLAIN DOWN""]; placevault = true;";
class Effects
{
};
};
class Item1
{
position[]={11463.747,317.3078,11349.89};
a=140;
b=140;
activationBy="ANY";
repeating=1;
interruptable=1;
age="UNKNOWN";
text="Basis_East";
name="Basis_East";
expActiv="if (playerSide == WEST) then {[Basis_East] execVM ""safezone.sqf""};";
class Effects
{
};
};
class Item2
{
position[]={11463.747,317.3078,11349.89};
name="Basis_East";
text="Survivor Safe Zone";
type="waypoint";
colorName="ColorRed";
};
};

As far as the "name=", I tried both "Basis_East" and "zoneklen" with no luck.
 
Back
Top