RegisterResourceBuildTaskFactory — FiveM Natives
0x285B43CA · CFX · server
Registers a build task factory for resources. The function should return an object (msgpack map) with the following fields: `` { // returns whether the specific resource should be built shouldBuild = func(resourceName: string): bool, // asynchronously start building the specific resource. // call cb when completed build = func(resourceName: string, cb: func(success: bool, status: string): void): void } ``
Parameters
| Name | Type | Description |
|---|---|---|
| factoryId | char* | The identifier for the build task. |
| factoryFn | func | The factory function. |
Returns
void