mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Missing return line in coding guide lines for SETPVAR (#7106)
This commit is contained in:
parent
06da5c33dd
commit
e592b6b975
@ -126,7 +126,8 @@ These macros are allowed but are not enforced.
|
||||
|`GETVAR(player,MyVarName,false)` | `player getVariable ["MyVarName", false]` |
|
||||
|`GETMVAR(MyVarName,objNull)` | `missionNamespace getVariable ["MyVarName", objNull]` |
|
||||
|`GETUVAR(MyVarName,displayNull)` | `uiNamespace getVariable ["MyVarName", displayNull]` |
|
||||
|`SETVAR(player,MyVarName,127)` | `player setVariable ["MyVarName", 127] SETPVAR(player,MyVarName,127) player setVariable ["MyVarName", 127, true]` |
|
||||
|`SETVAR(player,MyVarName,127)` | `player setVariable ["MyVarName", 127]` |
|
||||
|`SETPVAR(player,MyVarName,127)` | `player setVariable ["MyVarName", 127, true]` |
|
||||
|`SETMVAR(MyVarName,player)` | `missionNamespace setVariable ["MyVarName", player]` |
|
||||
|`SETUVAR(MyVarName,_control)` | `uiNamespace setVariable ["MyVarName", _control]` |
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user