cfglocations setVariable correction

This commit is contained in:
DESKTOP-UH65DCE\MusTanG 2017-10-22 09:41:00 -05:00
parent 1bf1df28f2
commit 3e7a62560a
3 changed files with 4 additions and 6 deletions

View File

@ -1,6 +1,6 @@
_position = getPosATL player;
_nearestLocations = nearestLocations[player, _radioactiveLocations, 300];
_nearestLocations = nearestLocations[player, ["NameLocal"], 300];
EPOCH_nearestLocations = _nearestLocations;
_powerSources = nearestObjects[player, ["Land_spp_Tower_F","Land_wpp_Turbine_V2_F","Land_wpp_Turbine_V1_F","SolarGen_EPOCH","Land_Wreck_Satellite_EPOCH"], _energyRange];

View File

@ -336,10 +336,7 @@ EPOCH_ActiveTraderMission = [];
_LastMissionTrigger = 0;
// setup radio active locations
//Commented out by Raymix: Does not ser variable on locations for some reason
/*
{
_x params ["_loc", "_rads"];
_x params ["_loc", "_rads","_markers"];
_loc setVariable ["EPOCH_Rads", _rads];
} forEach (missionNamespace getVariable ["EPOCH_radioactiveLocations", []]);
*/

View File

@ -271,9 +271,10 @@ if !(_radioactiveLocations isEqualTo []) then {
_locations = _locations - [_selectedLoc];
_locSize = size _selectedLoc;
_radius = sqrt((_locSize select 0)^2 + (_locSize select 1)^2);
_radioactiveLocationsTmp pushBack [_selectedLoc,[random 666,_radius]];
private _position = locationPosition _selectedLoc;
_createdLoc = createLocation ["NameLocal", _position, _radius, _radius];
_markers = ["Radiation", _position] call EPOCH_server_createGlobalMarkerSet;
_radioactiveLocationsTmp pushBack [_createdLoc,[random 666,_radius],_markers];
};
};
};