Need some help, i just dont see what i did wrong (adding buildings in mission.sqm)

corkingx

Member
so normally ive added like 200 things without trouble to my taviana server,

now ive got a panthera server
and i wanted to implement some buildings

this is the script
i just get this message in the rpt
ErrorMessage: File mpmissions\__cur_mp.panthera2\mission.sqm, line 1268: /Mission/Groups/Item1.Vehicles: Member already defined.

here is the line and script
Code:
    class Vehicles
        {
        items=9;   
        class Item0
            {
                position[]={6732.6099, -0.52491808, 4448.7021};
                init="this setpos [6732.6099,  4448.7021,  -0.52491808];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=62.988136;
                id=0;
                side="EMPTY";
                vehicle="Land_A_GeneralStore_01";
                skill=0.60000002;
            };
        class Item1
            {
                position[]={6701.0449, -3.1401951, 4388.6553};
                init="this setpos [6701.0449,  4388.6553,  -3.1401951];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=-202.35544;
                id=1;
                side="EMPTY";
                vehicle="Land_Barn_Metal";
                skill=0.60000002;
            };
        class Item2
            {
                position[]={6837.2612, -1.5258789e-005, 4550.8647};
                init="this setpos [6837.2612,  4550.8647,  -1.5258789e-005];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=-8.4994392;
                id=2;
                side="EMPTY";
                vehicle="Land_A_FuelStation_Build";
                skill=0.60000002;
            };
        class Item3
            {
                position[]={6836.6563, 3.0517578e-005, 4543.1265};
                init="this setpos [6836.6563,  4543.1265,  3.0517578e-005];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=0;
                id=3;
                side="EMPTY";
                vehicle="Land_A_FuelStation_Feed";
                skill=0.60000002;
            };
        class Item4
            {
                position[]={6839.1504,, 4543.1382};
                init="this setpos [6839.1504,  4543.1382, ];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=0;
                id=4;
                side="EMPTY";
                vehicle="Land_A_FuelStation_Feed";
                skill=0.60000002;
            };
        class Item5
            {
                position[]={6838.2397, -0.073970437, 4536.1738};
                init="this setpos [6838.2397,  4536.1738,  -0.073970437];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=84.49469;
                id=5;
                side="EMPTY";
                vehicle="Land_A_FuelStation_Shed";
                skill=0.60000002;
            };
        class Item6
            {
                position[]={6791.8887, -0.2503694, 4675.2964};
                init="this setpos [6791.8887,  4675.2964,  -0.2503694];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=-355.3447;
                id=6;
                side="EMPTY";
                vehicle="Land_A_TVTower_Base";
                skill=0.60000002;
            };
        class Item7
            {
                position[]={6791.6001, -0.29476249, 4675.6792};
                init="this setpos [6791.6001,  4675.6792,  -0.29476249];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=7.9978137;
                id=7;
                side="EMPTY";
                vehicle="Land_A_TVTower_Mid";
                skill=0.60000002;
            };
        class Item8
            {
                position[]={6791.3584, 7.6293945e-006, 4675.7544};
                init="this setpos [6791.3584,  4675.7544,  7.6293945e-006];private _pos; _pos = getPos _this; _this setVectorUp [_pos select 0, _pos select 1, (_pos select 2) + 10];";
                azimut=6.7251625;
                id=8;
                side="EMPTY";
                vehicle="Land_A_TVTower_Top";
                skill=0.60000002;
            };
[COLOR=#00ffff]        };      <-- This is the line 1268 like wtf? whats wrong[/COLOR]
    class Markers
    {
let me know what is wrong here
 
Now i get this

ErrorMessage: File mpmissions\__cur_mp.panthera2\mission.sqm, line 1671: /Mission/Groups/: Missing '}'

on the bottom of the script
Code:
class OutroLoose
{
    addOns[]=
    {
        "ibr_panthera2"
    };
    addOnsAuto[]=
    {
        "ibr_panthera2"
    };
    randomSeed=4975929;
    class Intel
    {
        startWeather=0.25;
        forecastWeather=0.25;
        year=2008;
        month=10;
        day=11;
        hour=9;
        minute=20;
        };
  };
<-- the last bracket is fucking up now ??
 
it s now line 1669 thats missins something wtf

ErrorMessage: File mpmissions\__cur_mp.panthera2\mission.sqm, line 1669: /Mission/Groups/: Missing '}'
 
its freaking there in 1669 he means




{
startWeather=0.25;
forecastWeather=0.25;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
}; 1669
}; 1670

How can it be missing } while its there? i cant get this
 
Back
Top