BIS fnc removeRespawnPosition: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " *\|= " to " ")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma3 |Game name=
| arma3


|0.50|Game version=
|0.50


|gr1= Respawn |GROUP1=
|gr1= Respawn


|eff= global |MPeff=
|eff= global |MPeff=


| Remove a respawn position added by [[BIS_fnc_addRespawnPosition]]. |DESCRIPTION=
| Remove a respawn position added by [[BIS_fnc_addRespawnPosition]].


| [target,id] call [[BIS_fnc_removeRespawnPosition]]; |SYNTAX=
| [target,id] call [[BIS_fnc_removeRespawnPosition]];


|p1= '''target''': [[Namespace]] or [[Side]] or [[Group]] or [[Object]]|Parameter1=
|p1= '''target''': [[Namespace]] or [[Side]] or [[Group]] or [[Object]]
|p2= '''id''': [[Number]]
|p2= '''id''': [[Number]]


| [[Boolean]] |RETURNVALUE=
| [[Boolean]]
   
   
|x1= <code><nowiki>[</nowiki>[[west]], 1] [[call]] [[BIS_fnc_removeRespawnPosition]];</code> |Example1=
|x1= <code><nowiki>[</nowiki>[[west]], 1] [[call]] [[BIS_fnc_removeRespawnPosition]];</code>


|x2= <code>myRespawn = [<nowiki/>[[missionNamespace]],"arena"] [[call]] [[BIS_fnc_addRespawnPosition]];
|x2= <code>myRespawn = [<nowiki/>[[missionNamespace]],"arena"] [[call]] [[BIS_fnc_addRespawnPosition]];
myRespawn [[call]] [[BIS_fnc_removeRespawnPosition]];
myRespawn [[call]] [[BIS_fnc_removeRespawnPosition]];
</code> |EXAMPLE2=
</code>


| [[BIS_fnc_addRespawnPosition]], [[Arma 3 Respawn]] |SEEALSO=
| [[BIS_fnc_addRespawnPosition]], [[Arma 3 Respawn]]


}}
}}

Revision as of 00:40, 18 January 2021

Hover & click on the images for description

Description

Description:
Remove a respawn position added by BIS_fnc_addRespawnPosition.
Execution:
call
Groups:
Respawn

Syntax

Syntax:
[target,id] call BIS_fnc_removeRespawnPosition;
Parameters:
target: Namespace or Side or Group or Object
id: Number
Return Value:
Boolean

Examples

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

Additional Information

See also:
BIS_fnc_addRespawnPositionArma 3 Respawn

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

Bottom Section