Jump to content

thade

Member
  • Posts

    35
  • Joined

  • Last visited

Posts posted by thade

  1. Hi Torndeco, love your work mate awesome job!

     

    Is there a way to use something like this

     

     _hint = parseText format["<t align=center' color='#009900' shadow='2' size='1.75'>Mission Alert</t><br/><t align='center' color='#ffffff'>Banndits are securing the site! Check your map for the location!</t&gt];
     customRemoteMessage = ['hint', _hint];
     publicVariable "customRemoteMessage";

     

    to replace the middle of screen text messages? I am not to fan a debug monitor always displaying.

  2. Hi waTTe, if add this to my addmarkets.sqf

     

    // Start Refresh Marker Script by *hs-s.com | waTTe - www.banditparty.de
     EPOCH_EVENT_RUNNING = true;
     sleep 1;
     while(EPOCH_EVENT_RUNNING) do {
     _MainMarker = createMarker ["MainMarker", Ccoords];
     _MainMarker setMarkerColor "ColorRed"; //Set the color of the marker
     _MainMarker setMarkerShape "ELLIPSE"; //Set the shape of the marker
     _MainMarker setMarkerBrush "Solid"; //Set the style of the marker
     _MainMarker setMarkerAlpha 0.75; //Set the transparency of the marker
     _MainMarker setMarkerSize [250,250]; //Set the size of the marker
     sleep 15;
     deleteMarker "MainMarker";
     };

     

    Do still have to add/replace old this:

     

    // 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";

     

    to the loot_sample.sqf?

  3. MGT how did you set your vaults to reset the vaults code to "0000"  after 14 days and if still not accessed delete after 30? Cheers Thade :)

     

     

    I have a function for that, it can be called at restart from a batch file etc

    UPDATE `object_data` SET `CharacterID` = 0 WHERE `lastactive` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 14 DAY) AND `Datestamp` < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 14 DAY) AND `CharacterID` > 0 AND `Classname` NOT IN ('VaultStorage')  AND `Inventory` <> '[]' AND `Inventory` IS NOT NULL
    
×
×
  • Create New...