CaptainPStar / co10_Escape

Official Github repository of A3 mission co10_Escape.
65 stars 48 forks source link

SOGPF Prison guards spawn with compass, map and radio #118

Open lozanoeg opened 3 years ago

lozanoeg commented 3 years ago

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.

aussie-battler commented 3 years ago

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

lozanoeg commented 3 years ago

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

aussie-battler commented 3 years ago

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

lozanoeg commented 3 years ago

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?

aussie-battler commented 3 years ago

@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