Jump to content

Carlos Leung

Member
  • Content Count

    14
  • Joined

  • Last visited

  • Medals

Everything posted by Carlos Leung

  1. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Is it possible to add the random option to "Add armed vehicles in Hideout" and "Add armed vehicles in Side mission/Cache" parameter?
  2. Carlos Leung

    [MP] =BTC= Hearts and Minds

    I have a simple question. Can the item in the vehicle and box inventory be saved? Including picked up from the enemy until? Cheers
  3. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Hello! I have some issue there, I set a save zone to prevent AI from spawning near the base. But AI still can go through it.
  4. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Arma 3 =BTC= Hearts and Minds but enemy is zombie... https://www.youtube.com/watch?v=rkcYtE7YqpY&ab_channel=CarlosKaHoLeung
  5. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Complete Hearts and Minds mission in less than 2 hs? Sorry for Cantonese. https://www.youtube.com/watch?v=AavWsLU16Zg&t=3363s
  6. Carlos Leung

    LAMBS Improved Danger.fsm

    HI, How to force enable LAMBS Danger FSM enhanced behaviors using unit init?
  7. Carlos Leung

    [MP] =BTC= Hearts and Minds

    ok, but how this multiplayer mission save game can work in a dedicated server?
  8. Carlos Leung

    [MP] =BTC= Hearts and Minds

    How you make a multiplayer mission can save game?
  9. Carlos Leung

    [MP] =BTC= Hearts and Minds

    I need the ammo box (near the EMP container) Variable name to make the jammer work.
  10. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Hello But TFAR still works when I near EMP object with my teammate. Cheers
  11. Carlos Leung

    [MP] =BTC= Hearts and Minds

    Hello I would like to add TFAR Jammer scripts to EMP side missions EMP object, Is it possible? /* Jam Radios script for TFAR created by Asherion and Rebel Version 0.2.0 Available from: https://forums.bistudio.com/forums/topic/203810-release-radio-jamming-script-for-task-force-radio/ This script will jam radios for all players within a given radius of a jamming vehicle Jamming is stronger nearer to the vehicle, while less strong at the edges of the radius NOTE: It is recommended to call this script from initPlayerLocal.sqf if you want to run the script from mission start. Parameter(s): 0: ARRAY of object(s) (Required)- Entity(s) that will cause the radios to be jammed. 1: NUMBER (Optional)- Range of the jammer in Meters. Default is 1000. 2: NUMBER (Optional)- Strength of the jammer. Default is 50. 3: BOOL (Optional)- Enable Debug. Default is False. Example: jamRadios = [[JAMMER],500] execVM "TFARjamRadios.sqf"; */ if (!hasInterface) exitwith {}; waituntil {!isnull player}; //Define the variables along with their default values. _jammers = param [0, [objNull], [[objNull]]]; _rad = param [1, 500, [0]]; _strength = param [2, 50, [0]] - 1; // Minus one so that radio interference never goes below 1 near the edge of the radius (which is the default for TFAR). _debug = param [3, true, [true]]; //compare distances between jammers and player to find nearest jammer and set it as _jammer _jammerDist = { _jammer = objNull; _closestDist = 1000000; { if (_x distance player < _closestdist) then { _jammer = _x; _closestDist = _x distance player; }; } foreach _jammers; _jammer; }; _jammer = call _jammerDist; // While the Jamming Vehicle is not destroyed, loop every 5 seconds while {alive _jammer} do { // Set variables _dist = player distance _jammer; _distPercent = _dist / _rad; _interference = 1; _sendInterference = 1; if (_dist < _rad) then { _interference = _strength - (_distPercent * _strength) + 1; // Calculat the recieving interference, which has to be above 1 to have any effect. _sendInterference = 1/_interference; //Calculate the sending interference, which needs to be below 1 to have any effect. }; // Set the TF receiving and sending distance multipliers player setVariable ["tf_receivingDistanceMultiplicator", _interference]; player setVariable ["tf_sendingDistanceMultiplicator", _sendInterference]; // Debug chat and marker. if (_debug) then { deletemarkerLocal "CIS_DebugMarker"; deletemarkerLocal "CIS_DebugMarker2"; //Area marker _debugMarker = createmarkerLocal ["CIS_DebugMarker", position _jammer]; _debugMarker setMarkerShapeLocal "ELLIPSE"; _debugMarker setMarkerSizeLocal [_rad, _rad]; //Position Marker _debugMarker2 = createmarkerLocal ["CIS_DebugMarker2", position _jammer]; _debugMarker2 setMarkerShapeLocal "ICON"; _debugMarker2 setMarkerTypeLocal "mil_dot"; _debugMarker2 setMarkerTextLocal format ["%1", _jammer]; systemChat format ["Distance: %1, Percent: %2, Interference: %3, Send Interference: %4", _dist, 100 * _distPercent, _interference, _sendInterference]; systemChat format ["Active Jammer: %1, Jammers: %2",_jammer, _jammers]; //copyToClipboard (str(Format ["Distance: %1, Percent: %2, Interference: %3", _dist, 100 * _distPercent, _interference])); }; // Sleep 5 seconds before running again sleep 5.0; //Only run this if there are multiple jammers. if (count _jammers > 1) then { //Check if all of the jammers are still alive. If not, remove it from _jammers. { if (!alive _x AND count _jammers > 1) then {_jammers = _jammers - [_x]}; } foreach _jammers; //Check for closest jammer _jammer = call _jammerDist; }; }; //Set TFR settings back to normal before exiting the script player setVariable ["tf_receivingDistanceMultiplicator", 1]; player setVariable ["tf_sendingDistanceMultiplicator", 1]; Cheers
  12. Carlos Leung

    [MP] =BTC= Hearts and Minds

    How to save structures place by Zeus or ACEX Fortify tool to H&M database system?
  13. @rebel12340I have this issue too. I tried this sample mission in my team server with my teammate. But not succeed. TFAR version 0.9.12
  14. I have a F-16 mod, I want to make this as a UAV but i don't know how, any reference about Config?
×