Jacob Schmidt afb3c665af Add PMC simulator mission pack and setup flow
- Add mission config, params, and function registrations
- Implement faction helpers and mission generators
- Include setup docs, CBA settings, and mission scaffolding
2026-05-22 22:38:38 -05:00

15 lines
297 B
Plaintext

if (isServer) then {
[] spawn {
while { true } do {
{
_x addCuratorEditableObjects
[
entities [[], ["Logic"], true /* Include vehicle crew */, true /* Exclude dead bodies */],
true
];
} count allCurators;
sleep 30; // Change to whatever fits your needs
};
};
};