- Add mission config, params, and function registrations - Implement faction helpers and mission generators - Include setup docs, CBA settings, and mission scaffolding
15 lines
297 B
Plaintext
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
|
|
};
|
|
};
|
|
};
|