local: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (added mp note)
Line 23: Line 23:
|x1= <code>'''local''' unitName</code> |= Example 1
|x1= <code>'''local''' unitName</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________
|pr= In MP remote objects are not initialised in functions called by initline or init eventhandlers.|=


|  |= See also
|  |= See also

Revision as of 07:53, 17 October 2006

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: All static objects are local everywhere.
Problems:
In MP remote objects are not initialised in functions called by initline or init eventhandlers.
Groups:
Uncategorised

Syntax

Syntax:
local
Parameters:
obj: Object
Return Value:
Boolean

Examples

Example 1:
local unitName

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