BIS fnc addRespawnPosition: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "</dd> </dl>" to "</dd> </dl>")
m (Text replacement - "\| *(arg|eff|mp|serverExec|gr[0-9]) *= *(.*) * *\|([^=]{12})" to "|$1=$2 |descr=$3")
Line 9: Line 9:
|eff= global
|eff= global


| Add a respawn position for [[Arma 3 Respawn#MenuPosition|respawn menu]].
|descr= Add a respawn position for [[Arma 3 Respawn#MenuPosition|respawn menu]].


|s1=[<target>,<position>] call [[BIS_fnc_addRespawnPosition]]
|s1=[<target>,<position>] call [[BIS_fnc_addRespawnPosition]]

Revision as of 21:36, 13 June 2021

Hover & click on the images for description

Description

Description:
Add a respawn position for respawn menu.
Execution:
call
Groups:
Respawn

Syntax

Syntax:
[<target>,<position>] call BIS_fnc_addRespawnPosition
Parameters:
target: Receiver of the respawn position
position:
  • Array - format Position
  • Object - specific object. When some crew positions are available and unlocked, players will be respawned on them, otherwise they will appear around the object.
  • String - marker name
name (optional):
  • String - respawn name, can be text or link to localization key
Return Value:
Array - format [target,id] (used in BIS_fnc_removeRespawnPosition)

Examples

Example 1:
[west, myRespawnAPC] call BIS_fnc_addRespawnPosition;
Example 2:
myRespawn = [missionNamespace,"arena","Battle Arena"] call BIS_fnc_addRespawnPosition;

Additional Information

See also:
BIS_fnc_removeRespawnPositionArma 3: RespawnBIS_fnc_respawnTickets

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
Posted on July 1, 2016 - 11:22 (UTC)
Krzmbrzl00
Make sure the used Position is in format Position3D (i.e. it contains a third coordinate (z-coordinate)) because otherwise you will get an error as soon as you open the respawn screen and you will be respawned at position [0,0,0] (lower left corner of the map), although the map marker for the spawn position is placed as intended