I dont get whats wrong here....

Jack Marslow

Well-Known Member
Code:
From mission report log
 
1:06:58 File mpmissions\__cur_mp.chernarus\mission.sqm, line 1212: '/Mission/Sensors.items': Missing ';' at the end of line
ErrorMessage: File mpmissions\__cur_mp.chernarus\mission.sqm, line 1215: Config: '"' encountered instead of '{'

Here is my mission.sqm.....

Code:
        class Markers //1165
    {
        items=8;
        class Item0
        {
            position[]={7839.6055,381.33774,8414.7324};
            name="center";
            type="Empty";
        };
        class Item1
        {
            position[]={-18697.58,379.53012,25815.256};
            name="respawn_west";
            type="Empty";
        };
        class Item2
        {
            position[]={4932.3345,0.39950246,1989.1094};
            name="spawn0";
            type="Empty";
        };
        class Item3
        {
            position[]={2236.0391,0.63119155,1923.3735};
            name="spawn1";
            type="Empty";
        };
        class Item4
        {
            position[]={8738.1328,0.45720705,2122.1082};
            name="spawn2";
            type="Empty";
        };
        class Item5
        {
            position[]={10909.267,0.57597214,2422.3096};
            name="spawn3";
            type="Empty";
        };
        class Item6
        {
            position[]={13510.764,0.44504455,5249.3027};
            name="spawn4";
            type="Empty";
        };
};
class Sensors
{   //112
items = 1
class Item1
{  //1215
POSITION[]="[6886.8242, 11436.295, 0]";
a=200;
b=200;
activationBy="WEST";
repeating=1;
interruptable=1;
age="UNKNOWN";
name="AdminBase";
expCond="(vehicle player) in thislist;";
expActiv="adminbase = [] execVM ""Scripts\adminbase.sqf"";";
expDesactiv="terminate adminbase; titleText [""You have left Devil's Castle!"", ""PLAIN DOWN"", 3];";
class Effects
{
titleType="TEXT";
titleEffect="PLAIN DOWN";
title="You are entering a restricted zone! Turn back now!";
};
};
    class Vehicles
 
Back
Top