local: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(correction)
mNo edit summary
Line 11: Line 11:
This can be used when some activation fields or scripts need to be performed only on one computer. In Singleplayer all objects are local.  
This can be used when some activation fields or scripts need to be performed only on one computer. In Singleplayer all objects are local.  


''Note:'' Map created objects (those placed in Visitor) are local everywhere. |= Description
''Note:'' Map created objects (those placed in [[Terrain_Editing|Visitor]]) are local everywhere. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 14:55, 22 September 2013

Hover & click on the images for description

Description

Description:
Check if given unit is local on the computer in Multiplayer games (see Locality in Multiplayer for general concepts). This can be used when some activation fields or scripts need to be performed only on one computer. In Singleplayer all objects are local. Note: Map created objects (those placed in Visitor) are local everywhere.
Problems:
In MP remote objects are not initialised in functions called by initline or init eventhandlers.
Groups:
Uncategorised

Syntax

Syntax:
Boolean = local object
Parameters:
object: Object
Return Value:
Boolean

Examples

Example 1:
SQS  ?!local _unitName : goto "multi"
Example 2:
SQF If (local _unitName) then {
hint "multi";
};

Additional Information

See also:
See also needed

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

Posted on August 4, 2006 - 10:56
hardrock
Notes from before the conversion: In multiplayer, a game logic will always be local to the host computer. This works on both dedicated and player-hosted servers.

Bottom Section