Revive – Arma 3
(→REVIVE) |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{GVI|A3|1.42|category}} | {{GVI|A3|1.42|category}} | ||
{{warning| | {{warning| | ||
'''''This page contains basic | '''''This page contains basic instructions on how to use this system in your missions.''''' | ||
'''''This system is not considered done and it is still subject to change.''''' | '''''This system is not considered done and it is still subject to change.''''' | ||
Line 9: | Line 8: | ||
}} | }} | ||
==== | == Overview == | ||
[[Description.ext]] | Revive offers a grace period of incapacitation for players killed during multiplayer gameplay. Team mates can then choose to revive incapacitated players, quickly getting them back into the fight instead of forcing them to respawn. | ||
== Installation == | |||
The system acts as a [https://community.bistudio.com/wiki/Arma_3_Respawn#Respawn_Templates Respawn Template] and can be used in conjunction with others. ('''Note:''' Currently limited to "MenuPosition" and "MenuInventory".) | |||
To use it to your mission, add the following line to your [https://community.bistudio.com/wiki/Description.ext description.ext] file: | |||
<code>respawnTemplates[] = {"Revive"};</code> | |||
== Customization == | |||
=== description.ext === | |||
<code>reviveDelay = 6; // The time it takes to revive a unit. Will be halved if you have a Medikit. (Default: 6 seconds.) | |||
reviveForceRespawnDelay = 3; // The time it takes to force your respawn while incapacitated. (Default: 3 seconds.) | |||
reviveBleedOutDelay = 120; // The time it takes for a unit to bleed out. (Default: 2 minutes.)</code> | |||
=== Other === | |||
Use the following to prevent the player from entering the incapacitated state: | |||
<code>player setVariable ["BIS_revive_disableRevive", true];</code> |
Revision as of 11:58, 9 June 2015
-wrong parameter ("A3") defined!-[[:Category:Introduced with A3 version 1.42|1.42]]
Overview
Revive offers a grace period of incapacitation for players killed during multiplayer gameplay. Team mates can then choose to revive incapacitated players, quickly getting them back into the fight instead of forcing them to respawn.
Installation
The system acts as a Respawn Template and can be used in conjunction with others. (Note: Currently limited to "MenuPosition" and "MenuInventory".)
To use it to your mission, add the following line to your description.ext file:
respawnTemplates[] = {"Revive"};
Customization
description.ext
reviveDelay = 6; // The time it takes to revive a unit. Will be halved if you have a Medikit. (Default: 6 seconds.)
reviveForceRespawnDelay = 3; // The time it takes to force your respawn while incapacitated. (Default: 3 seconds.)
reviveBleedOutDelay = 120; // The time it takes for a unit to bleed out. (Default: 2 minutes.)
Other
Use the following to prevent the player from entering the incapacitated state:
player setVariable ["BIS_revive_disableRevive", true];