I'm trying to add snakes to my Overpoch Lingor server.
They have to be added as Civ side, but I can't seem to get them in.
This is the addon: http://www.armaholic.com/page.php?id=10431
Code I used in mission.sqm:
class Item4
class Item1
{
side="LOGIC";
class Vehicles
{
items=1;
class Item0
{
position[]={-143.93861,0.52647489,2319.5012};
id=50;
side="LOGIC";
vehicle="FunctionsManager";
leader=1;
lock="UNLOCKED";
skill=0.60000002;
};
};
};
class Item2
{
side="LOGIC";
class Vehicles
{
items=1;
class Item0
{
position[]={2685.13,7680.2,0.002};
id=0;
side="LOGIC";
vehicle="CHN_VIRTCROC_LINGOR";
leader=1;
lock="UNLOCKED";
skill=0.60000002;
};
};
};
class Item3
{
side="GUER";
class Vehicles
{
items=1;
class Item0
{
position[]={9145.36,281.0,3643.42};
azimut=281;
special="NONE";
id=101;
side="GUER";
vehicle="UN_CDF_Soldier_SL_EP1";
leader=1;
skill=0.60000002;
init="this allowDammage false; this disableAI 'FSM'; this disableAI 'MOVE'; this disableAI 'AUTOTARGET'; this disableAI 'TARGET'; this setBehaviour 'CARELESS'; this forceSpeed 0;this enableSimulation false;this setcaptive true;this addAction [""Recruit Units"",""bon_recruit_units\open_dialog.sqf""]";
};
};
};
class Item4
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={9134.74,281,3642.68};
azimut=281;
id=1;
side="CIV";
vehicle="CSJ_Snake";
leader=1;
skill=0.60000002;
};
};
};
};
Example from sample mission for addon:
class Groups
{
items=27;
class Item0
{
side="CIV";
class Vehicles
{
items=1;
class Item0
{
position[]={1887.974,15.064314,2253.0154};
azimut=-24.353556;
id=0;
side="CIV";
vehicle="CSJ_Snake3";
leader=1;
skill=0.60000002;
};
};
};
What am I doing wrong?
Could infistar be preventing it from working?
Thank you.