(pack_files: PackedFile[])
| 893 | return result; |
| 894 | }; |
| 895 | const createScriptLoggingData = (pack_files: PackedFile[]) => { |
| 896 | pack_files.push({ |
| 897 | name: "script\\enable_console_logging", |
| 898 | file_size: 1, |
| 899 | start_pos: 0, |
| 900 | is_compressed: false, |
| 901 | schemaFields: [{ type: "Buffer", fields: [{ type: "Buffer", val: Buffer.from([0x00]) }] }], |
| 902 | } as PackedFile); |
| 903 | }; |
| 904 | const createAutoStartCustomBattleData = (pack_files: PackedFile[]) => { |
| 905 | const scriptBuffer = Buffer.from(autoStartCustomBattleScript, "utf-8"); |
| 906 | pack_files.push({ |
no outgoing calls
no test coverage detected