arma2:scripting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
arma2:scripting [2009/06/03 14:40] – added changing namespace info. snakeman | arma2:scripting [2024/08/01 22:38] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Scripting ====== | + | ====== |
- | **initJIPcompatible.sqf** is automatically started at unknown time, best guess would be when JIP player joins? | + | [[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: | ||
- | ====== Scripting Commands ====== | + | * using of undefined variable in scripts (nil value) will be in ArmA 2 strictly reported as an error. All variables used in any scripts must be initialized before first use. |
- | There's a lot of cool scripts (functions) available | + | * in ArmA 2 namespaces will be introduced for user scripts and variables. |
- | 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. | + | * 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, |
- | <code cpp> | + | |
- | // this will error if myBoolean was not previously defined. | + | |
- | if (myBoolean) then { hint " | + | |
- | </ | + | |
- | Usage of isNil is still valid. | + | |
+ | * SQS script format will be fully supported in ArmA 2 (but they should never be used). | ||
- | ===== BIS fnc locations ===== | + | **initJIPcompatible.sqf** initJIPcompatible.sqf gets called from the MP mission framework (scripts in modules MP directory). A script waits until the player object is initialized and execs initJIPcompatible.sqf on clients (all clients, even those that were allready there at mission start as it is basically the same). Has nothing todo with init.sqf. |
- | BIS fnc locations | + | [[arma2: |
- | Description: | + | Multiplayer |
- | Upon registering, | + | Some [[arma2:scripting: |
- | * " | + | [[arma2: |
- | * " | + | |
- | * " | + | |
- | * " | + | |
- | If you're registering currently existing object and some of variables above is already stored in it, it won't be replaced. | + | [[arma2: |
- | Syntax | + | Few more [[arma2: |
- | Syntax: | + | [[arma2: |
- | Parameters: type(s): String or Array of strings\\ | + | [[arma2:scripting:group_in_vehicle|Group |
- | area: Array in format [center, | + | |
- | debug: (Optional): Boolean | + | |
- | Return Value: Array - List of registered locations | + | [[arma2:scripting: |
- | Alternative Syntax | + | [[arma2: |
- | Syntax: | + | Global scripts dir or common scripts dir is very useful. This feature has been known since OFP, check out the details from [[arma: |
- | Parameters: objects: Array of Objects or Locations | + | Howto create and use [[arma2:scripting:object-compositions|Object Compositions]] in missions. |
- | Return Value: Array - List of registered locations | + | [[arma2:scripting: |
- | Examples | + | [[arma2: |
- | Example 1: | + | [[arma2: |
- | <code cpp> | + | |
- | [" | + | |
- | </ | + | |
- | Example 2: | ||
- | <code cpp> | ||
- | [[" | ||
- | </ | ||
- | |||
- | Example 3: | ||
- | <code cpp> | ||
- | [[myLocation1, | ||
- | </ | ||
- | |||
- | See also: | ||
- | |||
- | Functions Library (above hehe) | ||
- | |||
- | |||
- | ===== allowDamage ===== | ||
- | |||
- | Description: | ||
- | |||
- | Syntax: object allowDamage allow | ||
- | |||
- | Parameters: object: Object - allow: Boolean - | ||
- | |||
- | Example 1: | ||
- | <code cpp> | ||
- | player allowDamage false | ||
- | </ | ||
- | |||
- | |||
- | ===== setVariable ===== | ||
- | |||
- | setVariable now has a 3rd parameter: Global. | ||
- | |||
- | If you set the 3rd parameter to true, the variable will broadcast its value to every machine. | ||
- | <code cpp> | ||
- | _myObject setVariable [" | ||
- | </ | ||
- | |||
- | setVariable is now usable on any object, like groups for instance. This was not the case in ArmA. | ||
- | |||
- | |||
- | ===== uiNameSpace ===== | ||
- | |||
- | Working with UI related scripting commands, is not accepted in global or private variable space, and needs to be done inside uiNameSpace by using setVariable. | ||
- | |||
- | example: | ||
- | <code cpp> | ||
- | // set it | ||
- | uiNameSpace setVariable [" | ||
- | // use it | ||
- | ctrl.... (uiNameSpace getVariable " | ||
- | </ | ||
- | |||
- | |||
- | ===== createDiaryRecord ===== | ||
- | |||
- | createDiaryRecord | ||
- | |||
- | <code cpp> | ||
- | _diary = player createDiaryRecord [" | ||
- | </ | ||
- | |||
- | |||
- | ===== createSimpleTask ===== | ||
- | |||
- | createSimpleTask | ||
- | |||
- | <code cpp> | ||
- | task1 = player createSimpleTask [" | ||
- | </ | ||
- | |||
- | |||
- | ===== setSimpleTaskDescription ===== | ||
- | |||
- | setSimpleTaskDescription | ||
- | |||
- | <code cpp> | ||
- | task1 setSimpleTaskDescription [" | ||
- | </ | ||
- | |||
- | |||
- | ===== setSimpleTaskDestination ===== | ||
- | |||
- | setSimpleTaskDestination | ||
- | |||
- | <code cpp> | ||
- | task1 setSimpleTaskDestination markerPos " | ||
- | </ | ||
- | |||
- | |||
- | ===== setTaskState ===== | ||
- | |||
- | setTaskState | ||
- | |||
- | <code cpp> | ||
- | task1 setTaskState " | ||
- | </ | ||
- | |||
- | |||
- | ===== setCurrentTask ===== | ||
- | |||
- | setCurrentTask | ||
- | |||
- | <code cpp> | ||
- | player setCurrentTask task1; | ||
- | </ | ||
- | |||
- | |||
- | ===== attachTo ===== | ||
- | |||
- | attachTo, see also detach. | ||
- | |||
- | <code cpp> | ||
- | // Make player float exactly 2m above center of car, automatically changing vectordir + relative position as car moves. | ||
- | player attachTo [car, [0,0,2]]; | ||
- | detach player; | ||
- | </ | ||
- | |||
- | |||
- | ===== diag_log ===== | ||
- | |||
- | diag_log writes any variable ([_fish, _frog] or " | ||
- | |||
- | |||
- | ====== Changing nameSpace ====== | ||
- | |||
- | You can change namespace inside another namespace. Note that 1 misionNamespace refers to the normal global scope and 1 uiNamespace is the one where you are forced to store any control/ | ||
- | <code cpp> | ||
- | fish = " | ||
- | |||
- | with uiNamespace do | ||
- | { | ||
- | // Do some stuff with dialogs here. | ||
- | |||
- | with missionNamespace do | ||
- | { | ||
- | hint fish; // This sees the " | ||
- | }; | ||
- | // Do some more stuff with dialogs here. | ||
- | }; | ||
- | </ | ||
- | |||
- | I have no idea what the purpose of 1 parsingNamespace is. |
arma2/scripting.1244040024.txt.gz · Last modified: 2009/06/03 14:40 by snakeman