mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2026-08-24 16:41:31 +00:00
10 lines
276 B
Lua
10 lines
276 B
Lua
--- This makes a vehicle respawn itself when the mission starts.
|
|
-- Name: GRP-600 - Respawn
|
|
-- Author: FlightControl
|
|
-- Date Created: 01 Mar 2018
|
|
|
|
-- Find the Vehicle and create a GROUP object.
|
|
Vehicle = GROUP:FindByName( "Vehicle" )
|
|
|
|
-- Respawn the vehicle.
|
|
Vehicle:Respawn() |