30 lines
1.6 KiB
Lua
30 lines
1.6 KiB
Lua
-- LuaMissions.lua
|
|
-- Script to create and configure missions using the rem.mission feature
|
|
|
|
-- Create and configure the first mission
|
|
rem.mission.create("TestMission") -- Set mission name
|
|
rem.mission.thnconfig("manhattan_gen", "arc_juni") -- Set THN location and name
|
|
rem.mission.thntime(58) -- Set THN duration to 58 seconds
|
|
rem.mission.showpopup(458759, 458760) -- Set infocard IDs for caption and content
|
|
rem.mission.save() -- Finalize and save mission to the list
|
|
|
|
-- Create and configure the first mission
|
|
rem.mission.create("Blubberbernd") -- Set mission name
|
|
rem.mission.thnconfig("manhattan_gen", "arc_juni") -- Set THN location and name
|
|
rem.mission.thntime(58) -- Set THN duration to 58 seconds
|
|
rem.mission.showpopup(458770, 458771) -- Set infocard IDs for caption and content
|
|
rem.mission.save() -- Finalize and save mission to the list
|
|
|
|
-- Create and configure the first mission
|
|
rem.mission.create("reunion") -- Set mission name
|
|
rem.mission.thnconfig("manhattan_gen", "arc_juni") -- Set THN location and name
|
|
rem.mission.thntime(58) -- Set THN duration to 58 seconds
|
|
rem.mission.showpopup(458770, 458771) -- Set infocard IDs for caption and content
|
|
rem.mission.save()
|
|
|
|
-- Create and configure the first mission
|
|
rem.mission.create("duty") -- Set mission name
|
|
rem.mission.thnconfig("manhattan_gen", "arc_harrison") -- Set THN location and name
|
|
rem.mission.thntime(60) -- Set THN duration to 58 seconds
|
|
rem.mission.showpopup(458760, 458761) -- Set infocard IDs for caption and content
|
|
rem.mission.save() |