mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
cfglocations setVariable correction
This commit is contained in:
parent
1bf1df28f2
commit
3e7a62560a
@ -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];
|
||||
|
||||
|
@ -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", []]);
|
||||
*/
|
||||
|
@ -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];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user