Jump to content
Sign in to follow this  
aimgame

Triggers in A3 1.58

Recommended Posts

Hi! Im trying to move my sensors from 1.56 arma mission to 1.58.

Here all GUER units are been deleted if they walk into my trigger zone:

class Sensors
{
items=1;
class Item0
{
position[]={13325,0,14515};
a=200;
b=200;
activationBy="GUER";
repeating=1;
interruptable=1;
age="UNKNOWN";
expActiv="{deleteVehicle _x} forEach thisList;";
class Effects
{
};
};
};

It was working fine at 1.56 version.

 
But in 1.58 there is a new class - Entities , and everything is typed there... units, triggers, markers, etc.
 
So i've tried this:
class Entities
{
items=1;
class Item1
{
dataType="Trigger";
position[]={13325,0,14515};
class Attributes
{
name="delbot";
onActivation="{deleteVehicle _x} forEach thisList;";
sizeA=200;
sizeB=200;
repeatable=1;
interruptable=1;
activationBy="GUER";
};
id=210;
type="EmptyDetector";
};
};
But it didnt work((
 
I even tried to test it in 1.58 eden editor by placing a trigger and configuring parameters that needed. In 1.56 it was just fine, but here... its not working((
 
Please help!

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×