respawnVehicle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. classification)
m (VBS2 scripting category removal)
Line 64: Line 64:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands VBS2|{{uc:{{PAGENAME}}}}]]

Revision as of 06:17, 19 July 2011


-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Set vehicle as respawnable in MP games.
Groups:
Uncategorised

Syntax

Syntax:
vehicleName respawnVehicle [delay = -1, count = 0]
Parameters:
vehicleName: Object
[delay = -1, count = 0]: Array
delay: Number. Default -1 (use respawnDelay from Description.ext)
count: Number. Default 0 (unlimited respawns)
Return Value:
Nothing

Examples

Example 1:
_car respawnVehicle [5.0, 3];
'car' will respawn at the predefined marker for the side after 5 seconds. The unit will respawn 3 times.
Example 2:
_car respawnVehicle [30];
'car' will respawn at the predefined marker for the side after 30 seconds. The unit will respawn an unlimited number of times.

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

For this command to work (in both SP & MP) you need the appropriate markers in the mission. The markers are...
respawn_vehicle_west
respawn_vehicle_east
respawn_vehicle_guerilla
respawn_vehicle_civilian

Also, by default it will use respawnDelay from the description.ext as mentioned unless you specify

respawnVehicleDelay = x;

Where x is delay in seconds. Sy 16:38, 28 May 2007 (CEST)


In Multiplayer the respawned vehicle remains local to the client who was the last driver of the vehicle or the client who was the leader of the last AI driver of the vehicle. If the vehicle has yet to be driven or the AI driver is local to the Server then the respawned vehicle will be local to the Server.--Sy 16:49, 10 June 2007 (CEST)


Bottom Section