Jump to content

Tryukach09

Member
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Tryukach09

  1. just read the thread above yours again. this script is made for the loot event ammobox which you can find here: http://dayzepoch.com/forum/index.php?/topic/1027-spawn-ammo-box-with-loot-sample/

     

    you would have to create a ammoboxevent.sqf, edit it to use my script and copy it into your modules folder of dayz_Server.pbo. After that you can load theses ammobox events using the event spawner included in dayz epoch (EpochEvents= .... in your missionfile/init.sqf)

    I'm got it, for me ur 1st link was broken and it redirect me to this post :D

  2. if you remove this section:

    _event_marker = createMarker [ format ["loot_event_marker_%1", _start_time], _position];
    _event_marker setMarkerShape "ELLIPSE";
    _event_marker setMarkerColor "ColorBlue";
    _event_marker setMarkerAlpha 0.5;
    _event_marker setMarkerSize [(_markerRadius + 50), (_markerRadius + 50)];
    

    and replace it with this section:

    // Configurate Marker - Refresh Marker Script by *hs-s.com | waTTe - www.banditparty.de
     _markerRadius = 100;
     _markershape = "RECTANGLE";
     _markercolor = "ColorBlack";
     _missiontype = 0; //0=EPOCH_EVENT_RUNNING 1=SPECIAL_EVENT_RUNNING
     _refreshmarker = [_location,_markerRadius,_markershape,_markercolor,_missiontype] execVM "\z\addons\dayz_server\modules\refreshmarker.sqf";
    

    In what file i must change it?

×
×
  • Create New...