co10_Escape icon indicating copy to clipboard operation
co10_Escape copied to clipboard

SOGPF Prison guards spawn with compass, map and radio

Open lozanoeg opened this issue 3 years ago • 5 comments

The prison guards spawn with compass map and radio at the beginning when they normally don't in the other versions of the mission. IDK if this is only implemented on tanoa with the non CSAT guards but in the sogpf missions it makes the mission a little less fun to be handed the map and compass at the beginning.

lozanoeg avatar Jun 24 '21 03:06 lozanoeg

the guards:

co10_Escape_SOGPF.Cam_Lao_Nam\functions\Server\fn_initServer.sqf
line 373 (remove map) _x removeWeapon "vn_o_item_map"; line 418 (change the vehicle cargo): _vehicle addItemCargoglobal ["vn_b_item_firstaidkit", 3]; line 567 (remove first aid from guards) _unit setUnitRank "CAPTAIN"; _unit unlinkItem "vn_o_item_map"; _unit unlinkItem "vn_b_item_firstaidkit"; _unit unlinkItem "vn_b_item_compass"; _unit unlinkItem "ItemGPS";

Remove map other soldiers at low levels
functions\Spawning\fn_onEnemySoldierSpawn.sqf line 28 _unit removeItem "vn_o_item_map"; line 87 to 96: if (random 100 > 20) then { //_unit additem "ItemMap"; //_unit assignItem "ItemMap"; _unit unlinkItem "vn_o_item_map"; }; if (random 100 > 30) then { //_unit additem "ItemCompass"; //_unit assignItem "ItemCompass"; _unit unlinkItem "vn_b_item_compass"; };

aussie-battler avatar Jun 25 '21 02:06 aussie-battler

@NeoArmageddon changing these values actually fixed the issue I was having with the Linux not loading the mission correctly

lozanoeg avatar Jun 29 '21 00:06 lozanoeg

Issues are fixed in this version: https://github.com/NeoArmageddon/co10_Escape/tree/vn

aussie-battler avatar Jun 29 '21 01:06 aussie-battler

Issues are fixed in this version: https://github.com/NeoArmageddon/co10_Escape/tree/vn

Does this fix the find a map task in the mission flow script?

lozanoeg avatar Jun 29 '21 02:06 lozanoeg

@lozanoeg The DEV version is missing A3E_MapItemsUsedInMission

https://github.com/NeoArmageddon/co10_Escape/blob/7c42b6c4a0c2b7d445df27090c0d4904414f9067/Mods/SOGPF%20MACV%20vs%20PAVN-VC/UnitClasses.sqf#L979

aussie-battler avatar Jun 29 '21 05:06 aussie-battler