Difference between revisions of "Civilian Placement"

From ALiVE Wiki
Jump to: navigation, search
Line 25: Line 25:
  
 
For full map civilian ambiance, filter to ''Ignore Small+Medium'' locations and put all other settings to Low.  Use a combination of techniques to get your desired effect.
 
For full map civilian ambiance, filter to ''Ignore Small+Medium'' locations and put all other settings to Low.  Use a combination of techniques to get your desired effect.
 +
 +
 +
'''Custom Unit Blacklists'''
 +
 +
Advanced uses can customise the force compositions by blacklisting certain units, groups or vehicles.  To do so, add one or more of the variables to the sys_Profile module init field, where ''type'' is the vehicleClass ''C_man_1''
 +
 +
<syntaxhighlight lang="php">
 +
ALiVE_PLACEMENT_CUSTOM_UNITBLACKLIST = ["unitType_1","unitType_2","unitType_3"];
 +
ALiVE_PLACEMENT_CUSTOM_VEHICLEBLACKLIST = ["vehicleType_1","vehicleType_2","vehicleType_3"];
 +
ALiVE_PLACEMENT_CUSTOM_GROUPBLACKLIST = ["groupType_1","groupType_2","groupType_3"];
 +
</syntaxhighlight>

Revision as of 09:53, 12 July 2014

Part of:
Icon sys AISkill.png ALiVE Civilian
Requirements: Synced
Icon sys AISkill.png Civilian Population
Onebit no.png

Ambient Civilian Placement reads the map and creates a list of civilian locations and is used to define optional parameters for the civilian population. The separate Civilian Population System module handles spawning of Ambient Civilian units and the generic starting hostility to each faction.

Usage: Place the Civilian Population System module in the editor and any number of Ambient Civilian Placement modules. ACP can be restricted with TAOR and Blacklist markers in the same way as Military Placement. ACP does not need to be synced to anything.

Note that killing civilians will eventually turn them against you and you may find some unpleasant surprises coming your way.

Editor Tips

Note that less filtering you use, the longer CP will take to find locations. Very large maps such as Altis that have 500+ settlement can take up to 20 mins to initialise.

If you want very highly populated areas, keep the TAORs small and turn filtering off.

For full map civilian ambiance, filter to Ignore Small+Medium locations and put all other settings to Low. Use a combination of techniques to get your desired effect.


Custom Unit Blacklists

Advanced uses can customise the force compositions by blacklisting certain units, groups or vehicles. To do so, add one or more of the variables to the sys_Profile module init field, where type is the vehicleClass C_man_1

ALiVE_PLACEMENT_CUSTOM_UNITBLACKLIST = ["unitType_1","unitType_2","unitType_3"];
ALiVE_PLACEMENT_CUSTOM_VEHICLEBLACKLIST = ["vehicleType_1","vehicleType_2","vehicleType_3"];
ALiVE_PLACEMENT_CUSTOM_GROUPBLACKLIST = ["groupType_1","groupType_2","groupType_3"];