eventTransporterArrived()

(info) Other great resources: Official JS API docs, Scripting Forum

eventTransporterArrived()

Triggered when a mission transporter has arrived on the map with reinforcements....

 

Syntax

function eventTransporterArrived(transport) { // do stuff }

Parameters

Parameter

Type

Mandatory

Notes

Game version

Parameter

Type

Mandatory

Notes

Game version

transport

Droid object

The transporter that has arrived.

3.2

Return value

Warzone does not process the return value of this event.

Notes

This event is triggered when a transport arrives on the map at the location set by startTransporterEntry(). It will then proceed to (the nearest?) landing zone.

This event is useful for determining if the LZ is safe, and if not sending the transport back to base.

If the transport goes on to successfully land, eventTransporterLanded() will be triggered.

Example

function eventTransporterArrived() { playSound("pcv442.ogg"); // Reinforcements landing }