loadFile
From Bohemia Interactive Community
| Editors, please check Policy: Scripting Command Page Syntax. |
Click on the images for descriptions
Introduced in
- Game:
- Operation Flashpoint: Resistance
- Version:
- 1.90
Description
- Description:
- Return content of given filename.
Syntax
Examples
- Example 1:
_contents = loadFile "myFunction.sqf"
Additional Information
- Multiplayer:
- Behaviour unknown.
- See also:
- preprocessFile
Notes
Notes
Notes
- Unknown
- Unknown
- In Armed Assault, the 'loadfile' command must be preceded by the 'compile' command to work.
Ex OFP 1.96: _falarmEvent = loadfile ("syswarn\falarmEvent.sqf")
Ex ArmA 1.0: _falarmEvent = compile loadfile ("syswarn\falarmEvent.sqf") - Tactii 01:10, 11 July 2007 (CEST)
- Tactii
- This is not entirely accurate. loadFile only needs to be preceded with compile when loading code (for example, a function contained in an .sqf file). Using loadFile without compile will return a string, which, in some cases, is exactly what you want.

