Event Scripts: Difference between revisions
Lou Montana (talk | contribs) m (Text replacement - "\[\[Eden( |_)Editor(\||\])" to "[[:Category:Eden Editor$2") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 68: | Line 68: | ||
|} | |} | ||
{{Feature|informative|See [[Initialisation Order]] to learn when initialisation scripts are executed.}} | {{Feature|informative| | ||
* See [[Initialisation Order]] to learn when initialisation scripts are executed. | |||
* Additional initialisation scripts can be executed using functions with [[Arma 3: Functions Library#Attributes|preInit or postInit]] attribute. | |||
}} | |||
Line 146: | Line 149: | ||
| | | | ||
=== init3DEN.sqf === | === init3DEN.sqf === | ||
Executed when loading a scenario in [[:Category:Eden Editor]] if the file is present. Useful for executing scenario-specific editor functionality. | Executed when loading a scenario in [[:Category:Eden Editor|Eden Editor]] if the file is present. Useful for executing scenario-specific editor functionality. | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 160: | Line 163: | ||
=== initIntro.sqf === | === initIntro.sqf === | ||
Executed when intro, outro win or outro lose is started. | Executed when intro, outro win or outro lose is started. | ||
{{Feature|arma3|Functional in {{arma3}} only for intro.}} | |||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
| <!-- A1 --> | | {{Icon|checked}} <!-- A1 --> | ||
| <!-- A2 --> | | {{Icon|checked}} <!-- A2 --> | ||
| {{Icon|checked}} <!-- A2OA --> | | {{Icon|checked}} <!-- A2OA --> | ||
| {{Icon|checked}} <!-- A3 --> | | {{Icon|checked}} <!-- A3 --> | ||
Line 173: | Line 177: | ||
=== initIntro.sqs === | === initIntro.sqs === | ||
Executed when intro, outro win or outro lose is started. | Executed when intro, outro win or outro lose is started. | ||
{{Feature|arma3|Functional in {{arma3}} only for intro.}} | |||
| <!-- OFP --> | | <!-- OFP --> | ||
| {{Icon|checked}} <!-- OFPR --> | | {{Icon|checked}} <!-- OFPR --> | ||
Line 258: | Line 263: | ||
=== onFlare.sqs === | === onFlare.sqs === | ||
Executed when a flare is lit after being fired from grenade launcher. | Executed when a flare is lit after being fired from grenade launcher. | ||
<sqf>params ["_colorRGB", "_shooter", "_projectile"];</sqf> | <sqf>params ["_colorRGB", "_shooter", "_projectile", "_instigator"];</sqf> | ||
* colorRGB: [[Color|Color (RGBA)]] | * colorRGB: [[Color|Color (RGBA)]] | ||
* shooter: [[Object]] | * shooter: [[Object]] | ||
* {{GVI|arma3|2.10|size= 0.75}} projectile: [[Object]] - the flare itself | * {{GVI|arma3|2.10|size= 0.75}} projectile: [[Object]] - the flare itself | ||
* {{GVI|arma3|2.18|size= 0.75}} instigator: [[Object]] - shot instigator | |||
| <!-- OFP --> | | <!-- OFP --> | ||
| {{Icon|checked}} <!-- OFPR --> | | {{Icon|checked}} <!-- OFPR --> | ||
Line 420: | Line 426: | ||
* player: [[Object]] | * player: [[Object]] | ||
* killer: [[Object]] | * killer: [[Object]] | ||
| | | {{Icon|unknown}} <!-- OFP --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- OFPR --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A1 --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A2 --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A2OA --><!-- Untested --> | ||
| {{Icon|checked}} <!-- A3 --> | | {{Icon|checked}} <!-- A3 --> | ||
| | | {{Icon|unknown}} <!-- TKOH --><!-- Untested --> | ||
| <!-- suspension --> | | <!-- suspension --> | ||
Line 438: | Line 444: | ||
* killer: [[Object]] | * killer: [[Object]] | ||
* respawnDelay: [[Number]] | * respawnDelay: [[Number]] | ||
| | | {{Icon|unknown}} <!-- OFP --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- OFPR --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A1 --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A2 --><!-- Untested --> | ||
| | | {{Icon|unknown}} <!-- A2OA --><!-- Untested --> | ||
| {{Icon|checked}} <!-- A3 --> | | {{Icon|checked}} <!-- A3 --> | ||
| | | {{Icon|unknown}} <!-- TKOH --><!-- Untested --> | ||
| <!-- suspension --> | | <!-- suspension --> | ||
Line 518: | Line 524: | ||
| <!-- suspension --> | | <!-- suspension --> | ||
|} | |} | ||
Latest revision as of 17:23, 10 March 2024
Game | Path |
---|---|
1.00 | DTA |
1.00 | Ca.pbo |
1.00 | |
1.50 | |
1.00 | functions_f.pbo |
1.00 | data_h.pbo |
Event Scripts are scripts that are executed upon specific events. Not all event scripts are executed directly by the engine.
To use an Event Script, create a file of the given name in the mission directory.
init* scripts | (on)Player* scripts | Other Scripts |
---|---|---|
Available Scripts
File | Present in | Details | ||||||
---|---|---|---|---|---|---|---|---|
1.00 | 1.75 | 1.00 | 1.00 | 1.50 | 1.00 | 1.00 | Can suspend | |
exit.sqfExecuted when mission is finished (before debriefing screen). In Arma 3, see also "Ended" and "MPEnded" Mission Event Handlers.
|
||||||||
exit.sqsExecuted when mission is finished (before debriefing screen). In Arma 3, see also "Ended" and "MPEnded" Mission Event Handlers.
|
||||||||
init.sqfExecuted when mission is started (before briefing screen). |
||||||||
init.sqsExecuted when mission is started (before briefing screen). |
||||||||
init3DEN.sqfExecuted when loading a scenario in Eden Editor if the file is present. Useful for executing scenario-specific editor functionality. |
||||||||
initIntro.sqfExecuted when intro, outro win or outro lose is started. |
||||||||
initIntro.sqsExecuted when intro, outro win or outro lose is started. |
||||||||
initJIPcompatible.sqfExecuted locally by Arma 2: Multiplayer Framework when a player joins mission (includes both mission start and JIP). Also executed locally on server at mission start. |
||||||||
initPlayerLocal.sqfExecuted locally when player joins mission (includes both mission start and JIP). See Initialisation Order for details about when exactly the script is executed. |
||||||||
initPlayerServer.sqfExecuted only on server when a player joins mission (includes both mission start and JIP). See Initialisation Order for details about when exactly the script is executed. |
||||||||
initServer.sqfExecuted only on server when mission is started. See Initialisation Order for details about when exactly the script is executed. |
||||||||
missionFlow.fsmExecuted on post-init when mission is started. See BIS_fnc_missionFlow. |
||||||||
onFlare.sqsExecuted when a flare is lit after being fired from grenade launcher. |
||||||||
onPlayerKilled.sqfExecuted when player is killed in singleplayer or in multiplayer mission. |
||||||||
onPlayerKilled.sqsExecuted when player is killed in singleplayer or in multiplayer mission with "NONE" respawn type. |
||||||||
onPlayerRespawn.sqfExecuted locally when player respawns in a multiplayer mission. This event script will also fire at the beginning of a mission if respawnOnStart is 0 or 1, oldUnit will be objNull in this instance. This script will not fire at mission start if respawnOnStart equals -1. |
||||||||
onPlayerRespawn.sqsExecuted when player is killed in multiplayer mission with "INSTANT" or "BASE" respawn type. It will not work if dta\scripts\onPlayerRespawn.sqs does not exist. |
||||||||
onPlayerRespawnAsSeagull.sqsExecuted when player is killed in multiplayer mission with "SEAGULL" respawn type, or when the type is "GROUP" or "SIDE", but no remaining respawn slots are left. This script will replace the default respawn sequence. |
||||||||
onPlayerRespawnOtherUnit.sqsExecuted when player is killed in multiplayer mission with "GROUP" or "SIDE" respawn type. This script will replace the default respawn sequence. |
||||||||
onPlayerResurrect.sqsExecuted when player is respawned in multiplayer mission with "INSTANT" or "BASE" respawn type. It will not work if dta
|
||||||||
pauseOnLoad.sqfExecuted when pause menu is activated. To make it work in MP or Arma 3, use
|
||||||||
playerKilledScript.sqsExecuted locally when player is killed in singleplayer or in multiplayer mission with "NONE" respawn type. Overrides default behavior of mission death screen in single player. Game may become unplayable if not scripted correctly. Avoid use if not experienced with this script. |
||||||||
playerRespawnScript.sqsExecuted locally and immediately when player is killed in multiplayer mission with "BASE" or "INSTANT" respawn type. Overrides default behavior of multiplayer respawn. Game may become unplayable if not scripted correctly. Avoid use if not experienced with this script. |
||||||||
playerRespawnSeagullScript.sqsExecuted when player is killed in multiplayer mission with "SEAGULL" respawn type, or when the type is "GROUP" or "SIDE", but no remaining respawn slots are left. This script will replace the default respawn sequence. |
||||||||
playerRespawnOtherUnit.sqsExecuted when player is killed in multiplayer mission with "GROUP" or "SIDE" respawn type. This script will replace the default respawn sequence. |
||||||||
playerResurrectScript.sqsExecuted when player is respawned in multiplayer mission with "INSTANT" or "BASE" respawn type. It will not work if dta
|
| |||||||
teamSwitchScript.sqsExecuted after a Team Switch is done. Not triggered by selectPlayer. |