Respawn – Arma 3
Lou Montana (talk | contribs) m (Text replacement - "<tt>([^= ]+)<\/tt>" to "{{hl|$1}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 48: | Line 48: | ||
| Show singleplayer death screen | | Show singleplayer death screen | ||
| {{n/a}} | | {{n/a}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|unchecked}} | ||
|- | |- | ||
Line 56: | Line 56: | ||
| Respawn to a seagull | | Respawn to a seagull | ||
| Spectator, EndMission | | Spectator, EndMission | ||
|style="text-align:center | | style="text-align: center" | {{Icon|unchecked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|- | |- | ||
Line 64: | Line 64: | ||
| Respawn on spot where player died | | Respawn on spot where player died | ||
| Instant, Counter | | Instant, Counter | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|- | |- | ||
Line 85: | Line 85: | ||
You can have multiple markers simply by adding any text behind the name, e.g. ''respawn_west1'', ''respawn_westBase'' etc. When no markers are defined, player is respawned on position where he started the mission. More about marker respawn can be found [http://killzonekid.com/arma-scripting-tutorials-respawn-on-marker/ here]. Alternatively you can also use the ''Respawn Position'' module. | You can have multiple markers simply by adding any text behind the name, e.g. ''respawn_west1'', ''respawn_westBase'' etc. When no markers are defined, player is respawned on position where he started the mission. More about marker respawn can be found [http://killzonekid.com/arma-scripting-tutorials-respawn-on-marker/ here]. Alternatively you can also use the ''Respawn Position'' module. | ||
| Base, Counter | | Base, Counter | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|- | |- | ||
Line 93: | Line 93: | ||
| Respawn to the next available playable unit in a group. When none is left, BIRD respawn is used instead. | | Respawn to the next available playable unit in a group. When none is left, BIRD respawn is used instead. | ||
| Group, EndMission | | Group, EndMission | ||
|style="text-align:center | | style="text-align: center" | {{Icon|unchecked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|- | |- | ||
Line 101: | Line 101: | ||
| Respawn to the next available playable unit of the same side (selected using team switch window). When none is left, BIRD respawn is used instead. | | Respawn to the next available playable unit of the same side (selected using team switch window). When none is left, BIRD respawn is used instead. | ||
| Side, EndMission | | Side, EndMission | ||
|style="text-align:center | | style="text-align: center" | {{Icon|unchecked}} | ||
|style="text-align:center | | style="text-align: center" | {{Icon|checked}} | ||
|} | |} | ||
Line 131: | Line 131: | ||
respawnTemplates[] = { "MenuPosition", "Spectator" }; | respawnTemplates[] = { "MenuPosition", "Spectator" }; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
< | <sqf> | ||
// initPlayerLocal.sqf | |||
// --- Enable full spectator in respawn screen | |||
{ | { | ||
missionNamespace setVariable [_x, true]; | |||
} | } forEach [ | ||
"BIS_respSpecAi", | "BIS_respSpecAi", // Allow spectating of AI | ||
"BIS_respSpecAllowFreeCamera", | "BIS_respSpecAllowFreeCamera", // Allow moving the camera independent from units (players) | ||
"BIS_respSpecAllow3PPCamera", | "BIS_respSpecAllow3PPCamera", // Allow 3rd person camera | ||
"BIS_respSpecShowFocus", | "BIS_respSpecShowFocus", // Show info about the selected unit (dissapears behind the respawn UI) | ||
"BIS_respSpecShowCameraButtons", | "BIS_respSpecShowCameraButtons", // Show buttons for switching between free camera, 1st and 3rd person view (partially overlayed by respawn UI) | ||
"BIS_respSpecShowControlsHelper", | "BIS_respSpecShowControlsHelper", // Show the controls tutorial box | ||
"BIS_respSpecShowHeader", | "BIS_respSpecShowHeader", // Top bar of the spectator UI including mission time | ||
"BIS_respSpecLists" | "BIS_respSpecLists" // Show list of available units and locations on the left hand side | ||
]; | ]; | ||
</ | </sqf> | ||
=== Official Templates === | === Official Templates === | ||
Line 238: | Line 239: | ||
Both templates feature a similar respawn UI and therefore share the following options: | Both templates feature a similar respawn UI and therefore share the following options: | ||
* '''Timeout disabling''' | * '''Timeout disabling''' | ||
** Mission designer can disable the timeout used between death of a unit and opening of the respawn screen | ** Mission designer can disable the timeout used between death of a unit and opening of the respawn screen: <sqf> | ||
< | missionNamespace setVariable ["BIS_RscRespawnControls_skipBlackOut", true, true]; // disable timout | ||
missionNamespace setVariable ["BIS_RscRespawnControls_skipBlackOut", nil, true]; // reset to original timeout | |||
</sqf> | |||
* '''Autorespawn''' | * '''Autorespawn''' | ||
** A checkbox can be ticket to let the player automatically respawn once the coundown reached 0. If disabled player is not respawned immediately, but must confirm selection by clicking on "RESPAWN" button. | ** A checkbox can be ticket to let the player automatically respawn once the coundown reached 0. If disabled player is not respawned immediately, but must confirm selection by clicking on "RESPAWN" button. | ||
Line 349: | Line 351: | ||
'''Author:''' {{User|R3vo}}<br> | '''Author:''' {{User|R3vo}}<br> | ||
<spoiler> | <spoiler> | ||
< | <sqf> | ||
/* | /* | ||
Author: R3vo | Author: R3vo | ||
Line 424: | Line 426: | ||
copyToClipboard _export; | copyToClipboard _export; | ||
_export | _export | ||
</ | </sqf> | ||
</spoiler> | </spoiler> | ||
{{Feature|important|Loadouts are only available after they were added with the [[BIS_fnc_addRespawnInventory]] function!}} | {{Feature|important|Loadouts are only available after they were added with the [[BIS_fnc_addRespawnInventory]] function!}} | ||
Line 433: | Line 435: | ||
In order to let players respawn with the gear they started the mission with, create the following two files in your mission folder and add the code:<br> | In order to let players respawn with the gear they started the mission with, create the following two files in your mission folder and add the code:<br> | ||
{{hl|[[Event Scripts|initPlayerLocal.sqf]]}} | {{hl|[[Event Scripts|initPlayerLocal.sqf]]}} | ||
< | <sqf> | ||
{ | player setVariable ["TAG_LoadoutStart", getUnitLoadout player]; | ||
player addEventHandler ["Respawn", { player setUnitLoadout (player getVariable ["TAG_LoadoutStart", []]); }]; | |||
</sqf> | |||
Alternatively you can do:<br> | Alternatively you can do:<br> | ||
{{hl|[[Event Scripts|initPlayerLocal.sqf]]}} | {{hl|[[Event Scripts|initPlayerLocal.sqf]]}} | ||
< | <sqf>player setVariable ["TAG_LoadoutStart", getUnitLoadout player];</sqf> | ||
[[ | {{hl|[[Event Scripts|onPlayerRespawn.sqf]]}} | ||
<sqf>player setUnitLoadout (player getVariable ["TAG_LoadoutStart", []]);</sqf> | |||
{{GameCategory|arma3|Editing}} | {{GameCategory|arma3|Editing}} |
Revision as of 21:11, 15 April 2022
Settings
- Some basic settings can be set up in Eden Editor
- The description.ext allows for full control over all available respawn settings
Scripting
Scripting Commands
Scripting Functions
Event Scripts
Respawn Types
Type is represented either by respawn ID, or by its name.
respawn = "BASE";
respawn = 3;
ID | Name | Description | Default Templates | onPlayerKilled | onPlayerRespawn |
---|---|---|---|---|---|
0 | "NONE" | Show singleplayer death screen | N/A | ||
1 | "BIRD" | Respawn to a seagull | Spectator, EndMission | ||
2 | "INSTANT" | Respawn on spot where player died | Instant, Counter | ||
3 | "BASE" | Respawn on a marker(s) start by following strings:
Unit respawn
Vehicle respawn
You can have multiple markers simply by adding any text behind the name, e.g. respawn_west1, respawn_westBase etc. When no markers are defined, player is respawned on position where he started the mission. More about marker respawn can be found here. Alternatively you can also use the Respawn Position module. |
Base, Counter | ||
4 | "GROUP" | Respawn to the next available playable unit in a group. When none is left, BIRD respawn is used instead. | Group, EndMission | ||
5 | "SIDE" | Respawn to the next available playable unit of the same side (selected using team switch window). When none is left, BIRD respawn is used instead. | Side, EndMission |
Respawn Templates
Templates are pre-defined scripts called when player dies and respawns. They are defined in an array and can be combined together.
respawnTemplates[] = { "MenuInventory", "MenuPosition" };
Additionally, you can define side specific templates. When a side has no unique templates, it will use general respawnTemplates instead.
respawnTemplatesWest[] = { "MenuInventory" };
respawnTemplatesEast[] = { "Counter" };
respawnTemplatesGuer[] = { "Tickets" };
respawnTemplatesCiv[] = { "Spectator" };
respawnTemplatesVirtual[] = {}; // Virtual players, used mainly in Curator (Zeus) missions
Conflicts
The respawn templates "MenuPosition" and "Spectator" are not compatible since MenuPosition will force the map open. Instead you can use the following settings to get access to the full spectator mode:
// description.ext
respawn = 3;
respawnTemplates[] = { "MenuPosition", "Spectator" };
Official Templates
Class | Description | Preview |
---|---|---|
None | Singleplayer death screen. Default in singleplayer. | |
Spectator | Spectator Mode. | |
Instant | Currently empty. | |
Base | Currently empty. | |
Group | Cutscene showing a newly controlled unit. | |
Side | Cutscene showing a newly controlled unit. | |
Seagull | Operation Flashpoint-style seagull respawn | |
Wave | Adjusts respawn counter so players spawns together. Wave delay is based on respawnDelay and Player's respawn time is set between 1 and 2 times respawnDelay: if respawnDelay is set to e.g 10, respawn waves happen every 10 seconds. If a player dies and the next respawn wave is in 3 seconds, the player's respawn time is set to 17 seconds to match the next wave. | |
Tickets | Use a limited respawn ticket pool for players. Pool can be applied to everyone, a side, a group or a single unit.
Use BIS_fnc_respawnTickets to update the amount of available tickets. Note that the template will have no effect if this function is never used, meaning players outside of all given pools will have infinite respawns. |
|
Counter | Show a simple respawn countdown. | |
EndMission | Automatically fail the mission once all players are dead (for NONE, BIRD, GROUP and SIDE respawn types) or when all respawn tickets are exceeded (for INSTANT and BASE respawn types with Tickets template) | |
MenuPosition | Lets players select from available respawn positions defined either by respawn markers, see Respawn Types, by BIS_fnc_addRespawnPosition function or by the Respawn Position module. A new screen was released with 1.60 and brings new functionalities together with a new design.
Item disabling
|
|
MenuInventory |
Lets players pick a respawn loadout defined in CfgRespawnInventory. Loadouts can be added using BIS_fnc_addRespawnInventory function. A new screen was released with 1.60 and brings new functionalities together with a new design. Role selection
Item disabling
Limits
|
Options shared by MenuInventory and MenuPosition
Both templates feature a similar respawn UI and therefore share the following options:
- Timeout disabling
- Mission designer can disable the timeout used between death of a unit and opening of the respawn screen: missionNamespace setVariable ["BIS_RscRespawnControls_skipBlackOut", true, true]; // disable timout missionNamespace setVariable ["BIS_RscRespawnControls_skipBlackOut", nil, true]; // reset to original timeout
- Mission designer can disable the timeout used between death of a unit and opening of the respawn screen:
- Autorespawn
- A checkbox can be ticket to let the player automatically respawn once the coundown reached 0. If disabled player is not respawned immediately, but must confirm selection by clicking on "RESPAWN" button.
- Spectator Camera
- The Spectator Camera used in here is slightly modified (no free camera available etc.) version of Spectator Mode. For full documentation see Spectator Mode documentation.
- Mission designer needs to use the Spectator respawn template, the camera is disabled otherwise.
Custom Respawn Templates
New templates can be defined in global Config.cpp or in mission and campaign Description.ext files.
Example:
class CfgRespawnTemplates
{
// Class used in respawnTemplates entry
class myTag_beacon
{
// Function or script executed upon death. Parameters passed into it are the same as are passed into onPlayerKilled.sqf file
onPlayerKilled = "\myAddon\scripts\respawnBeacon.sqf";
// Function or script executed upon respawn. Parameters passed into it are the same as are passed into onPlayerRespawn.sqf file
onPlayerRespawn = "\myAddon\scripts\respawnBeacon.sqf";
// Default respawn delay (can be overwitten by description.ext entry of the same name)
respawnDelay = 20;
// 1 to respawn player when he joins the game. Available only for INSTANT and BASE respawn types
// Can be overridden by description.ext attribute of the same name
respawnOnStart = 1;
// By default onPlayerKilled and onPlayerRespawn function are spawned
// set to 1 to run in unscheduled, called functions MUST NOT return an assignment or respawn will break
isCall = 0;
};
class Spectator
{
onPlayerRespawn = "BIS_fnc_respawnSpectator";
};
};
Loadouts and Roles
The main purpose of the roles is to make things more clear and simple for player when selecting loadout. All the loadouts available in a mission are now divided into various roles.
Mission designer can use roles already created in the game config, or custom roles can be defined in description.ext file. Loadouts with no role assigned are automatically assigned to the Default role.
Loadout config example:
class CfgRoles
{
class Assault // Class name used in CfgRespawnInventory
{
displayName = $STR_A3_Role_Assault; // Name of the role, displayed in the respawn menu
icon = "a3\missions_f_exp\data\img\classes\assault_ca.paa"; // Icon shown next to the role name in the respawn screen
};
};
class CfgRespawnInventory
{
class B_SquadLeader // Class of the respawn inventory, used by BIS_fnc_addRespawnInventory
{
displayName = $STR_b_soldier_sl_f0; // Name of the respawn inventory
role = "Assault"; // Role the respawn inventory is assigned to
icon = "\A3\ui_f\data\map\VehicleIcons\iconManLeader_ca.paa"; // Icon shown next to the role
show = "side group _this == west"; // Condition used to make specific respawn inventories only avaiable for specfic sides, must return [[Boolean]]
weapons[] = { // Weapons
"arifle_SPAR_01_khk_F",
"Rangefinder",
"hgun_P07_khk_F"
};
magazines[] = { // Magazines
"SmokeShell",
"SmokeShell",
"16Rnd_9x21_Mag",
"16Rnd_9x21_Mag",
"16Rnd_9x21_Mag",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"30Rnd_556x45_Stanag_Tracer_Red",
"HandGrenade",
"HandGrenade"
};
items[] = { // Useable items
"FirstAidKit"
};
linkedItems[] = { // Linked items, also weapon items, helmet etc.
"V_PlateCarrierSpec_tna_F",
"H_HelmetB_Enh_tna_F",
"optic_ERCO_blk_F",
"acc_pointer_IR",
"NVGoggles_tna_F",
"ItemGPS",
"ItemMap",
"ItemCompass",
"ItemWatch",
"ItemRadio"
};
uniformClass = "U_B_T_Soldier_SL_F"; // uniform
};
Export Function:
- The following function will copy a complete respawn inventory to your clipboard, see function header for more information.
Author: R3vo
Restore Loadout on Respawn
In order to let players respawn with the gear they started the mission with, create the following two files in your mission folder and add the code:
initPlayerLocal.sqf
Alternatively you can do:
initPlayerLocal.sqf