Spearhead 1944 Code Snippets

From Bohemia Interactive Community
Revision as of 14:03, 5 August 2023 by .kju (talk | contribs) (added code to have revive system for AI joining the player group)
Jump to navigation Jump to search

Determine positions of craters on terrain

The craters that are part of the terrain, are not objects.

Normandy-Crater.jpg

They usually have crater decals in them but the once present on the terrain do not link to the config versions which makes detecting them is harder.

In order to detect craters within 10 meters around the player, use the following code:

(nearestObjects [player, [], 10]) select { ((getModelInfo _x) # 0) in ["spe_crater_decal_large.p3d","spe_crater_decal_small.p3d"] };

Enable revive system on AI joining the player group

Certain scripts/missions/mods allow the player to recruit AI to his group or add reinforcements to the player group.

Important: The enhanced revive module needs to be put into the mission (or the scripted setup used).

//initPlayerLocal.sqf/init.sqf with if (hasInterface) then {...}; (group player) addEventHandler ["UnitJoined", { params ["_group", "_newUnit"]; [_newUnit] call SPE_MissionUtilityFunctions_fnc_ReviveToksaInit; [_newUnit] call SPE_MissionUtilityFunctions_fnc_ReviveToksaActionsInit; }];