BIS fnc diagLoop: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category\:Function Group\: Diagnostic(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| arma3 |Game name=
| arma3 |Game name=
Line 7: Line 6:


|gr1= Diagnostic |GROUP1=
|gr1= Diagnostic |GROUP1=
____________________________________________________________________________________________


| Runs scripted loop. Repeated call terminates previous loops.|DESCRIPTION=
| Runs scripted loop. Repeated call terminates previous loops.|DESCRIPTION=


____________________________________________________________________________________________


|  [code,delay] spawn [[BIS_fnc_diagLoop]] |SYNTAX=
|  [code,delay] spawn [[BIS_fnc_diagLoop]] |SYNTAX=
____________________________________________________________________________________________
|p1= code: [[Code]] - Code to be executed|PARAMETER1=
|p1= code: [[Code]] - Code to be executed|PARAMETER1=
|p2= code: [[Number]] - (Optional, default 0.1) Delay between loops|PARAMETER2=
|p2= code: [[Number]] - (Optional, default 0.1) Delay between loops|PARAMETER2=
Line 21: Line 17:


| [[Script]] - [[spawn|Spawn]] handle|RETURNVALUE=
| [[Script]] - [[spawn|Spawn]] handle|RETURNVALUE=
____________________________________________________________________________________________


|x1= <code>[{systemChat "Loop!"}, 0.5] [[spawn]] [[BIS_fnc_diagLoop]];</code> |=
|x1= <code>[{systemChat "Loop!"}, 0.5] [[spawn]] [[BIS_fnc_diagLoop]];</code> |=
____________________________________________________________________________________________


|[[:Category:Function Group: Diagnostic|Diag functions]]|SEEALSO=
|[[:Category:Function Group: Diagnostic|Diag functions]]|SEEALSO=

Revision as of 00:10, 17 January 2021

Hover & click on the images for description

Description

Description:
Runs scripted loop. Repeated call terminates previous loops.
Execution:
spawn
Groups:
Diagnostic

Syntax

Syntax:
[code,delay] spawn BIS_fnc_diagLoop
Parameters:
code: Code - Code to be executed
code: Number - (Optional, default 0.1) Delay between loops
Return Value:
Script - Spawn handle

Examples

Example 1:
[{systemChat "Loop!"}, 0.5] spawn BIS_fnc_diagLoop;

Additional Information

See also:
Diag functions

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

Bottom Section