arma2:scripting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma2:scripting [2011/07/24 08:36] – added basics_of_sqf link. snakeman | arma2:scripting [2024/08/01 22:38] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Scripting ====== | + | ====== |
+ | |||
+ | [[https:// | ||
ArmA 2 will be largely compatible with Armed Assault. To make porting of content from ArmA as simple as possible, there are few important things: | ArmA 2 will be largely compatible with Armed Assault. To make porting of content from ArmA as simple as possible, there are few important things: | ||
Line 9: | Line 11: | ||
* in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame. | * in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame. | ||
- | * SQS script format will be fully supported in ArmA 2. | + | * SQS script format will be fully supported in ArmA 2 (but they should never be used). |
- | **initJIPcompatible.sqf** is automatically started at unknown time, best guess would be when JIP player joins? | + | **initJIPcompatible.sqf** |
[[arma2: | [[arma2: | ||
Line 23: | Line 25: | ||
[[arma2: | [[arma2: | ||
+ | Few more [[arma2: | ||
- | ====== Scripting Commands ====== | + | [[arma2: |
- | There' | + | [[arma2: |
- | Since ArmA 2 you must first initialize a variable before you reference it in your scripts. In ArmA, it was not a problem, at least for conditions. | + | [[arma2: |
- | <code cpp> | + | |
- | // this will error if myBoolean was not previously defined. | + | |
- | if (myBoolean) then { hint " | + | |
- | </ | + | |
- | Usage of isNil is still valid. | + | |
- | + | ||
- | Few more [[arma2: | + | |
+ | [[arma2: | ||
- | ====== taskHint.sqf ====== | + | Global scripts dir or common scripts dir is very useful. This feature has been known since OFP, check out the details from [[arma: |
- | How to make task hints | + | Howto create and use [[arma2: |
- | taskHint is relatively useless itself (because it requires too much effort), but there is a script that makes it easier to use. So instead of executing a hint, do this: | + | [[arma2: |
- | <code cpp> | + | |
- | [objNull, objNull, tskExample1, | + | |
- | </ | + | |
- | The first 2 arguments are useless so i just send objNull, the 3rd is the task that you've created, and the 4th is the status. | + | [[arma2: |
- | Supported task states: " | + | [[arma2:scripting: |
- | * This command does not set the state of the task, so you still need to do this command, and the setTaskState command in your trigger. | ||
- | * It creates the hint in the middle of the screen, not at the right side (this means that taskHint and hint can be used at the same time). |
arma2/scripting.1311496599.txt.gz · Last modified: 2011/07/24 08:36 (external edit)