Biology
Legion Studios' biology framework, including how to use it and how to add your own biologies.
1. Getting a unit's biology
private _biology = ls_player call ls_common_fnc_getBiology;
_biology params ["_type", "_species", "_isOrganic", "_bloodModels"];
// _type will be the "group" that a species belongs to
// _species will be the exact type.
// Example: Humans have the _type of "nearhuman", but a species of "human".
if (_type == "zombie") then {
systemChat "rurrgghhh";
};2. Configuration
2.1 Creating a custom biology
3. Examples of using biologies
4. Additional Resources
Last updated