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

setTransporterExit()

Define the location where transports will exit the map...

 

Syntax

setTransporterExit(x, y, player);

Parameters

ParameterTypeMandatoryNotesGame version
xNumber(tick)The x co-ordinate where the transport should disappear.3.2
yNumber(tick)The y co-ordinate where the transport should disappear.3.2
playerNumber(tick)The ID of the player who this exit point belongs to.3.2

Return value

(question)

Notes

This function is primarily designed for use in campaign missions. In other game modes, it would probably be better to use removeObject() instead.

When specifying the co-ordinates where the transport disappears, you should ideally choose a position at the edge of the map, otherwise it will look like the transport just disappears in to thin air.

When the transport leaves the map, eventTransporterExit() will be triggered.

Example

setTransportExit(47, 0, me);
Availability 3.2+

Requires:

  • Warzone 3.2 or above
Contents

Jump to:

Scripting: Droids

Related objects:

Constants:

  • .action – what action is the droid doing?
  • .droidType – what category of droid is it?
  • .order – what is the droids order?

Create them:

Organise them:

List or count them:

Tell them what to do:

How to's:

Transfer them between players:

Find out what's happening to droids:

Remove them:

Player Initialisation: