setWaypointStatements: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(thislist link changed)
m (Some wiki formatting)
 
(72 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma |= Game name
|game1= ofpe
|version1= 1.00


|1.00|= Game version
|game2= arma1
____________________________________________________________________________________________
|version2= 1.00


| The waypoint is done only when the condition is fulfilled. When the waypoint is done, the statement expression is executed.
|game3= arma2
|version3= 1.00


Within the Condition & Statement code string, [[this]] refers to the group leader, and [[this#thislist|thislist]] refers to an array containing each unit in the group.
|game4= arma2oa
|= Description
|version4= 1.50
____________________________________________________________________________________________


| waypoint '''setWaypointStatements''' [condition, statement] |= Syntax
|game5= tkoh
|version5= 1.00


|p1= waypoint: [[Array]] - format [[Waypoint]] |= Parameter 1
|game6= arma3
|p2= [condition, statement]: [[Array]] |= Parameter 2
|version6= 0.50
|p3= condition: [[String]] |= Parameter 3
|p4= statement: [[String]] |= Parameter 4


| [[Nothing]] |= Return value
|gr1= Waypoints
____________________________________________________________________________________________
 
|x1= <pre>new_wp setWaypointStatements ["true", "hint 'hello'; hint 'goodbye'"];</pre> |= Example 1
____________________________________________________________________________________________


| [[waypointStatements]], [[waypointStatements (VBS2)]] |= See also
|descr= The waypoint is done only when the condition is fulfilled. When the waypoint is done, the statement expression is executed.<br>
Within the Condition & Statement code string:
* [[Magic Variables#this_2|this]] refers to the group leader
* [[Magic Variables#thisList|thisList]] refers to the group's units
{{Feature | important | The '''Condition''' code is evaluated on the [[groupOwner|group owner]]'s machine. When condition returns [[true]], for some strange reason, the condition is evaluated one more time. The '''OnActivation''' code is executed '''[[Multiplayer Scripting#Locality|globally]]''', a.k.a on every client! See [[Waypoints]].}}


}}
|s1= waypoint [[setWaypointStatements]] [condition, statement]
 
|p1= waypoint: [[Array]] - format [[Waypoint]]
 
|p2= condition: [[String]]


<h3 style="display:none">Notes</h3>
|p3= statement: [[String]]
<dl class="command_description">
<!-- Note Section BEGIN -->
If you want to use a string within the condition or statement fields, you can either use ' or "" to mark quotes within a string. For example:


'''[_grp, 2] setWaypointStatements ["true", "nul = [_unit] execVM ""myscript.sqf"";"]'''
|r1= [[Nothing]]


or
|x1= <sqf>_waypoint setWaypointStatements ["true", "hint 'hello'; hint 'goodbye'"];</sqf>


'''[_grp, 2] setWaypointStatements ["true", "hint 'The unit has reached the destination';"]'''
|x2= <sqf>_waypoint setWaypointStatements ["true", "diag_log ['GroupLeader: ', this]; diag_log ['Units: ', thislist]"];</sqf>


<!-- Note Section END -->
|seealso= [[waypointStatements]]
</dl>
}}


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|SETWAYPOINTSTATEMENTS]]
|user= SilentSpike
[[Category:Scripting Commands OFP Elite |SETWAYPOINTSTATEMENTS]]
|timestamp= 20160521161900
[[Category:Scripting Commands ArmA|SETWAYPOINTSTATEMENTS]]
|text= Within the completion statement [[currentWaypoint]] will give the index of the waypoint being completed (as opposed to the following one).<br><br>
[[Category:Command_Group:_Waypoints|SETWAYPOINTSTATEMENTS]]
This is particularly useful if you need a self deleting waypoint:
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
<sqf>_waypoint setWaypointStatements ["true", "deleteWaypoint [group this, currentWaypoint group this]"]</sqf>
[[Category:Scripting Commands VBS2|{{uc:{{PAGENAME}}}}]]
}}
 
{{Note
|user= RHfront
|timestamp= 20170509163500
|text= The condition block carries the same rules as functions which return a value.
The return value must be a [[Boolean]].
One can bypass the use of triggers in this manner:
<sqf>_waypoint setWaypointStatements ["code code code; _returnBool", "onActivation block;"];</sqf>
}}

Latest revision as of 14:56, 22 May 2022

Hover & click on the images for description

Description

Description:
The waypoint is done only when the condition is fulfilled. When the waypoint is done, the statement expression is executed.
Within the Condition & Statement code string:
  • this refers to the group leader
  • thisList refers to the group's units
The Condition code is evaluated on the group owner's machine. When condition returns true, for some strange reason, the condition is evaluated one more time. The OnActivation code is executed globally, a.k.a on every client! See Waypoints.
Groups:
Waypoints

Syntax

Syntax:
waypoint setWaypointStatements [condition, statement]
Parameters:
waypoint: Array - format Waypoint
condition: String
statement: String
Return Value:
Nothing

Examples

Example 1:
_waypoint setWaypointStatements ["true", "hint 'hello'; hint 'goodbye'"];
Example 2:
_waypoint setWaypointStatements ["true", "diag_log ['GroupLeader: ', this]; diag_log ['Units: ', thislist]"];

Additional Information

See also:
waypointStatements

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
SilentSpike - c
Posted on May 21, 2016 - 16:19 (UTC)
Within the completion statement currentWaypoint will give the index of the waypoint being completed (as opposed to the following one).

This is particularly useful if you need a self deleting waypoint:
_waypoint setWaypointStatements ["true", "deleteWaypoint [group this, currentWaypoint group this]"]
RHfront - c
Posted on May 09, 2017 - 16:35 (UTC)
The condition block carries the same rules as functions which return a value. The return value must be a Boolean. One can bypass the use of triggers in this manner:
_waypoint setWaypointStatements ["code code code; _returnBool", "onActivation block;"];