Other great resources: Official JS API docs, Scripting Forum
eventLaunchTransporter()
Triggered when a mission transporter has been instructed to launch....
Syntax
function eventLaunchTransporter() {
// do stuff
}Parameters
This event has no parameters.
Return value
Warzone does not process the return value of this event.
Notes
In a mission, when the transporter is launched it will generally fly off-world as defined in the campaign mission configuration files.
Example
function eventLaunchTransporter() {
playSound("pcv441.ogg"); // Reinforcements in transit
}