Jump to content
Twiznak

[SOLVED. read for solution]Calling EOS on a marker spawned with script.

Recommended Posts

Hi. I want to get EOS to spawn units within a marker spawned by a onMapSingleClick script.

 

I call this script from the mission init.sqf via  execVM "mark.sqf";

 

mark.sqf

Spoiler

openMap true;

mapclick = false;

onMapSingleClick "
_marker_1= createMarker ['marker_1',[0,0,0]];
_marker_1 setMarkerShape 'ELLIPSE';
_marker_1 setMarkerSize [1000, 1000];
'marker_1' setMarkerPos _pos;
mapclick = true;
openMap false;
true";

waitUntil{!visibleMap};


onMapSingleClick "";

It works. When I launch the mission a map dialog opens, I click on it and the marker is created where I click. How do I get EOS to recognize the marker as a hostile zone and spawn units? 

eos\openme.sqf

Spoiler

null=[["marker_1"],[1,0],[1,0],[1,0],[1],[1],[1,0],[0,0,1000,EAST,FALSE]] call EOS_Spawn;
 

I felt it was necessary to start a new topic and not post this question in the EOS official thread as I have see it asked there before but never answered.  

Share this post


Link to post
Share on other sites

SOLUTION. just add the null=["marker_1"]..... bit into the mark.sqf. I am humbled.

  • Like 1

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

×