Jump to content

#SEM - Simple Epoch Missions v0.8.1 + 0.8.3 test


KiloSwiss

Recommended Posts

hello!!

does anyone have a problem with SEM and the blackmarket script on a linux server? we have both on our server and every 2-3 restarts the SEM script is not loading...

greets,

yes

---

We found a solution: Just put a "sleep 30;" in the beginning of the blackmarket init. So we postpone it after the SEM loading is complete. Works fine yet.

THX yes

Link to comment
Share on other sites

  • 3 weeks later...

Not sure but should this in https://github.com/KiloSwiss/Simple-Epoch-Missions/blob/master/sem/scripts/ai/fn_findThread.sqf

{if(!(terrainIntersect [_checkPos, [(getPosATL _x) select 0, (getPosATL _x) select 1, ((getPosATL _x) select 2) + 1]]))then[{

not be

{if(!(terrainIntersect [_checkPos, [(getPos _x) select 0, (getPos _x) select 1, ((getPos _x) select 2) + 1]]))then[{

because i think sem is causing this rpt spam:

14:32:30 Client: Object 3:3074 (type Type_90) not found.
Link to comment
Share on other sites

Anyone care to give me any tips for making this loot table work? Created a list like this..

 

_AntiTankAir = [

["launch_B_Titan_F",        "Titan_AA"],
["launch_B_Titan_short_F",  "Titan_AT"],
["launch_B_Titan_short_F",  "Titan_AP"],
["launch_RPG32_F",      "RPG32_HE_F"],
["launch_NLAW_F",       "NLAW_F"]
 
];
 
_Explos = [
["ATMine_Range_Mag"],
["APERSMine_Range_Mag"],
["APERSBoundingMine_Range_Mag"],
["SLAMDirectionalMine_Wire_Mag"],
["APERSTripMine_Wire_Mag"],
["ClaymoreDirectionalMine_Remote_Mag"],
["SatchelCharge_Remote_Mag"],
["DemoCharge_Remote_Mag"],
["IEDUrbanBig_Remote_Mag"],
["IEDLandBig_Remote_Mag"],
["IEDUrbanSmall_Remote_Mag"],
["IEDLandSmall_Remote_Mag"],
["HandGrenade"],
["MiniGrenade"],
["1Rnd_HE_Grenade_shell"],
["3Rnd_HE_Grenade_shell"]
 
];

 
Added it like this...

case 3:{ //ATA/LMG/DMR
_wpn = _AntiTankAir select (random (count _AntiTankAir -1));
_box addWeaponCargoGlobal [(_wpn select 0), 1];
_box addMagazineCargoGlobal [(_wpn select 1), 3];
_wpn = _LMGs select (random (count _LMGs -1));
_box addWeaponCargoGlobal [(_wpn select 0), 1];
_box addMagazineCargoGlobal [(_wpn select 1), 3];
_wpn = _DMRs select (random (count _DMRs -1));
_box addWeaponCargoGlobal [(_wpn select 0), 1];
_box addMagazineCargoGlobal [(_wpn select 1), 5];
_box addItemCargoGlobal ["optic_Hamr", 1];
_box addItemCargoGlobal ["optic_Arco", 1];
_box addItemCargoGlobal [_rifleOptics select (random (count _rifleOptics -1)), 1];
_box addItemCargoGlobal [_rifleOptics select (random (count _rifleOptics -1)), 1];
_box addItemCargoGlobal ["NVG_EPOCH", 1];
};

 

And this..

case 8:{ //Explosives
_wpn = _AntiTankAir select (random (count _AntiTankAir -1));
_crate addWeaponCargoGlobal [(_wpn select 0), 1];
_crate addMagazineCargoGlobal [(_wpn select 1), 3];
_wpn = _Explos select (random (count _Explos -1));
_crate addMagazineCargoGlobal [(_wpn select 1), 3];
_wpn = _DMRs select (random (count _DMRs -1));
_crate addWeaponCargoGlobal [(_wpn select 0), 1];
_crate addMagazineCargoGlobal [(_wpn select 1), 5];
_crate additemcargoGlobal ["Rangefinder", 1];
_crate additemcargoGlobal ["VehicleRepair", 1];
_crate additemcargoGlobal ["FAK", 6];
_crate additemcargoGlobal ["sweetcorn_epoch", 2];
_crate additemcargoGlobal ["ItemSodaRbull", 1];
_crate additemcargoGlobal ["Pelt_EPOCH", 2];
_crate additemcargoGlobal ["ItemKiloHemp", 5];
_crate additemcargoGlobal ["Towelette", 4];
 
};

 
But it doesnt work. Any help is appreciated. 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
×
×
  • Create New...