Event Scripts: Difference between revisions
Jump to navigation
Jump to search
Fred Gandt (talk | contribs) m (Put back my previous layout linking improvements) |
SilentSpike (talk | contribs) (mission start only for initPlayer scripts) |
||
Line 5: | Line 5: | ||
== Available Scripts == | == Available Scripts == | ||
{| class=" | {| class="wikitable" | ||
! File | ! File | ||
! Description | ! Description | ||
! Arguments | ! Arguments | ||
! | ! [[File:ofp_1.00.gif]] | ||
! | ! [[File:ofpr_1.75.gif]] | ||
! | ! [[File:arma_1.00.gif]] | ||
! | ! [[File:arma2_1.00.gif]] | ||
! | ! [[File:arma2oa_1.51.gif]] | ||
! | ! [[File:arma3_1.00.gif]] | ||
! | ! [[File:TKOH_1.00.gif]] | ||
|- | |- | ||
Line 56: | Line 56: | ||
| ''exit.sqs'' | | ''exit.sqs'' | ||
| Executed when mission is finished (before debriefing screen). In Arma 3, "ended" [[addMissionEventHandler|mission event handler]] has the same functionality. | | Executed when mission is finished (before debriefing screen). In Arma 3, "ended" [[addMissionEventHandler|mission event handler]] has the same functionality. | ||
| < | | <code>[endType:[[String]]]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| ✔ <!-- OFPR --> | | ✔ <!-- OFPR --> | ||
Line 68: | Line 68: | ||
| ''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. | ||
| < | | <code>[colorRGB:[[Array]],shooter:[[Object]]]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| ✔ <!-- OFPR --> | | ✔ <!-- OFPR --> | ||
Line 82: | Line 82: | ||
To make it work in MP, use ''onPauseScript = "myScript.sqf"'' in [[description.ext]] | To make it work in MP, use ''onPauseScript = "myScript.sqf"'' in [[description.ext]] | ||
| < | | <code>[pauseMenuDisplay:[[Display]]]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 94: | Line 94: | ||
| ''onPlayerKilled.sqs'' | | ''onPlayerKilled.sqs'' | ||
| Executed when player is killed in singleplayer or in multiplayer mission with "NONE" [[description.ext#respawn|respawn type]]. | | Executed when player is killed in singleplayer or in multiplayer mission with "NONE" [[description.ext#respawn|respawn type]]. | ||
| < | | <code>[player:[[Object]], killer:[[Object]]]</code> | ||
| ✔ <!-- OFP --> | | ✔ <!-- OFP --> | ||
| ✔ <!-- OFPR --> | | ✔ <!-- OFPR --> | ||
Line 101: | Line 101: | ||
| ✔ <!-- A2OA --> | | ✔ <!-- A2OA --> | ||
| ✔ <!-- A3 --> | | ✔ <!-- A3 --> | ||
| ✔ <!-- TKOH --> | | ✔ <!-- TKOH --> | ||
Line 118: | Line 106: | ||
| ''onPlayerRespawnAsSeagull.sqs'' | | ''onPlayerRespawnAsSeagull.sqs'' | ||
| Executed when player is killed in multiplayer mission with "SEAGULL" [[description.ext#respawn|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. | | Executed when player is killed in multiplayer mission with "SEAGULL" [[description.ext#respawn|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. | ||
| < | | <code>[player:[[Object]], killer:[[Object]], seagull:[[Object]]]</code> | ||
| ✔ <!-- OFP --> | | ✔ <!-- OFP --> | ||
| ✔ <!-- OFPR --> | | ✔ <!-- OFPR --> | ||
Line 130: | Line 118: | ||
| ''onPlayerRespawnOtherUnit.sqs'' | | ''onPlayerRespawnOtherUnit.sqs'' | ||
| Executed when player is killed in multiplayer mission with "GROUP" or "SIDE" [[description.ext#respawn|respawn type]]. This script will replace the default respawn sequence. | | Executed when player is killed in multiplayer mission with "GROUP" or "SIDE" [[description.ext#respawn|respawn type]]. This script will replace the default respawn sequence. | ||
| < | | <code>[player:[[Object]], killer:[[Object]], newPlayer:[[Object]]]</code> | ||
| ✔ <!-- OFP --> | | ✔ <!-- OFP --> | ||
| ✔ <!-- OFPR --> | | ✔ <!-- OFPR --> | ||
Line 165: | Line 153: | ||
|- | |- | ||
| ''initPlayerServer.sqf'' | | ''initPlayerServer.sqf'' | ||
| Executed only on server when a player joins mission ( | | Executed only on server when a player joins mission (mission start only). See [[Functions_Library_(Arma_3)#Initialization_Order|initialization order]] for details about when the script is exactly executed. | ||
| < | | <code>[player:[[Object]],didJIP:[[Boolean]]]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 177: | Line 165: | ||
|- | |- | ||
| ''initPlayerLocal.sqf'' | | ''initPlayerLocal.sqf'' | ||
| Executed locally when player joins mission ( | | Executed locally when player joins mission (mission start only). See [[Functions_Library_(Arma_3)#Initialization_Order|initialization order]] for details about when the script is exactly executed. | ||
| < | | <code>[player:[[Object]],didJIP:[[Boolean]]]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 190: | Line 178: | ||
| ''onPlayerKilled.sqf'' | | ''onPlayerKilled.sqf'' | ||
| Executed when player is [[Arma_3_Respawn#Files|killed]] in singleplayer or in multiplayer mission. | | Executed when player is [[Arma_3_Respawn#Files|killed]] in singleplayer or in multiplayer mission. | ||
| < | | <code>[<oldUnit>,<killer>,<respawn>,<respawnDelay>]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 202: | Line 190: | ||
| ''onPlayerRespawn.sqf'' | | ''onPlayerRespawn.sqf'' | ||
| Executed locally when player [[Arma_3_Respawn#Files|respawns]] in a multiplayer mission. | | Executed locally when player [[Arma_3_Respawn#Files|respawns]] in a multiplayer mission. | ||
| < | | <code>[<newUnit>,<oldUnit>,<respawn>,<respawnDelay>]</code> | ||
| <!-- OFP --> | | <!-- OFP --> | ||
| <!-- OFPR --> | | <!-- OFPR --> | ||
Line 212: | Line 200: | ||
|} | |} | ||
Note: Additional init scripts can be executed using functions with [[Functions_Library_(Arma_3)#Attributes|preInit or postInit]] attribute. | |||
== See also == | == See also == |
Revision as of 20:17, 28 August 2014
Event scripts are scripts which are executed by the game engine upon specific events.
To use an event script, create a file of given name in the mission directory.
Available Scripts
File | Description | Arguments | |||||||
---|---|---|---|---|---|---|---|---|---|
init.sqs | Executed when mission is started (before briefing screen) | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
init.sqf | Executed when mission is started (before briefing screen) | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ||
initIntro.sqf | Executed when intro, outro win or outro lose is started. | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
exit.sqs | Executed when mission is finished (before debriefing screen). In Arma 3, "ended" mission event handler has the same functionality. | [endType:String]
|
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
onFlare.sqs | Executed when a flare is lit after being fired from grenade launcher. | [colorRGB:Array,shooter:Object]
|
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
pauseOnLoad.sqf | Executed when pause menu is activated.
To make it work in MP, use onPauseScript = "myScript.sqf" in description.ext |
[pauseMenuDisplay:Display]
|
✔ | ✔ | ✔ | ||||
onPlayerKilled.sqs | Executed when player is killed in singleplayer or in multiplayer mission with "NONE" respawn type. | [player:Object, killer:Object]
|
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
onPlayerRespawnAsSeagull.sqs | Executed 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. | [player:Object, killer:Object, seagull:Object]
|
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
onPlayerRespawnOtherUnit.sqs | Executed when player is killed in multiplayer mission with "GROUP" or "SIDE" respawn type. This script will replace the default respawn sequence. | [player:Object, killer:Object, newPlayer:Object]
|
✔ | ✔ | ✔ | ✔ | ✔ | ✔ | |
initJIPcompatible.sqf | Executed by Multiplayer framework on all machines when a player joins mission (includes both mission start and JIP). | ✔ | ✔ | ||||||
initServer.sqf | Executed only on server when mission is started. See initialization order for details about when the script is exactly executed. | ✔ | |||||||
initPlayerServer.sqf | Executed only on server when a player joins mission (mission start only). See initialization order for details about when the script is exactly executed. | [player:Object,didJIP:Boolean]
|
✔ | ||||||
initPlayerLocal.sqf | Executed locally when player joins mission (mission start only). See initialization order for details about when the script is exactly executed. | [player:Object,didJIP:Boolean]
|
✔ | ||||||
onPlayerKilled.sqf | Executed when player is killed in singleplayer or in multiplayer mission. | [<oldUnit>,<killer>,<respawn>,<respawnDelay>]
|
✔ | ||||||
onPlayerRespawn.sqf | Executed locally when player respawns in a multiplayer mission. | [<newUnit>,<oldUnit>,<respawn>,<respawnDelay>]
|
✔ |
Note: Additional init scripts can be executed using functions with preInit or postInit attribute.