loadFile: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (duplicate note removed) |
Killzone Kid (talk | contribs) (syntax format) |
||
Line 12: | Line 12: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | '''loadFile''' filename |= Syntax | ||
|p1= filename: [[String]] |= Parameter 1 | |p1= filename: [[String]] |= Parameter 1 | ||
Line 19: | Line 19: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <code>_contents = [[loadFile]] "myFunction.sqf"</code> |= Example 1 | |x1= <code>_contents = [[loadFile]] "myFunction.sqf";</code> |= Example 1 | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 15:12, 25 January 2017
Description
- Description:
- Return content of given filename.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_contents = loadFile "myFunction.sqf";
Additional Information
- See also:
- preprocessFileLineNumberspreprocessFile
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Posted on 28 November 2006 - 01:37
- Pennywise
- 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") - Posted on 11 July 2007 - 01:10 (CEST)
- Tactii
- The note by Pennywise 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.
- Posted on 02 December 2012 - 11:17 (ZULU)
- neokika
- Please note that any comment you have within the file you load will be included, to get around that use preprocessFile instead.
- Posted on 25 January 2016 - 12:13
- James
- Notice that you will have to activate file patching via -filePatching [[1]]. Otherwise, execVM and loadFile will *not* load any files outside your mission folder (like the global scripts). For more info see CMA:DevelopmentSetup (since Arma 3 1.49+).
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint: Resistance version 1.90
- Operation Flashpoint: Resistance: New Scripting Commands
- Operation Flashpoint: Resistance: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands: Local Effect
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands ArmA
- Command Group: System Commands
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters