Mission Lua API: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:
= Mission =
= Mission =
== Description ==
== Description ==
The Mission API controls the flow of the mission, this includes starting and stopping the mission, triggering hints and messages and sending data between varying mission characters
The Mission API controls the flow of the mission, this includes starting and stopping the mission, and dealing with objectives and other mission-related information
== Functions ==
== Functions ==
=== MissionStarted ===
=== MissionStarted ===
Line 24: Line 24:
'''Returns''': Nothing
'''Returns''': Nothing


=== AddCharacter ===
=== SpawnCharacter ===
<syntaxhighlight source lang="lua">Mission.AddCharacter(characterTable)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.SpawnCharacter(internalName)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
Line 31: Line 31:
! Name !! Type
! Name !! Type
|-
|-
| characterTable || Lua Table
| internalName || string
|}
|}
'''Description''': Register and spawn a chracter in the game
'''Description''': Spawn a registered character in the game


'''Returns''': Nothing
'''Returns''': Nothing


=== SendMessageToPlayer ===
=== ObjectiveIsActive ===
<syntaxhighlight source lang="lua">Mission.SendMessageToPlayer(sender, message)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.ObjectiveIsActive(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
Line 44: Line 44:
! Name !! Type
! Name !! Type
|-
|-
| sender || string
| objectiveName || string
|-
| message || string
|}
|}
'''Description''': Send an SMS with the contents _message_ from ''sender''
'''Description''': Returns true if objective has been started but not completed yet.


'''Returns''': Nothing
'''Returns''': bool


=== AddNetwork ===
=== ObjectiveIsCompleted ===
<syntaxhighlight source lang="lua">Mission.AddNetwork(networkTable)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.ObjectiveIsCompleted(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
Line 59: Line 57:
! Name !! Type
! Name !! Type
|-
|-
| networkTable || Lua Table
| objectiveName || string
|}
|}
'''Description''': Register a network to the game
'''Description''': Returns true if objective has been completed.


'''Returns''': Nothing
'''Returns''': bool
 
=== ConnectToNetwork ===
<syntaxhighlight source lang="lua">Mission.ConnectToNetwork(characterTable, networkName, accessKey)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| characterTable || Lua Table
|-
| networkName || string
|-
| accessKey || string
|}
'''Description''': Connect a device to a specified network
 
'''Returns''': Nothing
 
=== SendData ===
<syntaxhighlight source lang="lua">Mission.SendData(sender, receiver, dataTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| sender || Lua Type
|-
| receiver || Lua Type
|-
| dataTable || Lua Table
|}
'''Description''': Send a data file from one device to another
 
'''Returns''': Nothing
 
'''Notes''': Much like _ConnectToNetwork_ both _senderName_ and _receiverName_ can be character names (assuming those characters have net devices)
=== SetNetDeviceNFCData ===
<syntaxhighlight source lang="lua">Mission.SetNetDeviceNFCData(deviceTable, dataTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| deviceTable || Lua Table
|-
| dataTable || Lua Table
|}
'''Description''': Sets NFC data on a mission object
 
'''Returns''': Nothing
 
=== SetNetDeviceNFC ===
<syntaxhighlight source lang="lua">Mission.SetNetDeviceNFC(deviceTable, enabled)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| deviceTable || Lua Table
|-
| enabled || bool
|}
'''Description''': Set if a mission object supports NFCAddNetDevice
 
'''Returns''': Nothing
 
=== AddNetDevice ===
<syntaxhighlight source lang="lua">Mission.AddNetDevice(deviceTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| deviceTable || Lua Table
|}
'''Description''': Add a network device to the mission that's not hackable but can communicate with other devices
 
'''Returns''': Nothing
 
=== AddHackableDevice ===
<syntaxhighlight source lang="lua">Mission.AddHackableDevice(deviceTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| deviceTable || Lua Table
|}
'''Description''': Add a hackable device to the mission
 
'''Returns''': Nothing


=== StartObjective ===
=== StartObjective ===
<syntaxhighlight source lang="lua">Mission.StartObjective(objectiveTable)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.StartObjective(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
Line 163: Line 70:
! Name !! Type
! Name !! Type
|-
|-
| objectiveTable || Lua Table
| objectiveName || string
|}
|}
'''Description''': Start the provided objective
'''Description''': Start the provided objective
Line 170: Line 77:


=== CompleteObjective ===
=== CompleteObjective ===
<syntaxhighlight source lang="lua">Mission.CompleteObjective(objectiveTable)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.CompleteObjective(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
Line 176: Line 83:
! Name !! Type
! Name !! Type
|-
|-
| objectiveTable || Lua Table
| objectiveName || string
|}
|}
'''Description''': Complete the provided objective
'''Description''': Complete the provided objective
'''Returns''': Nothing
=== SendNextHint ===
<syntaxhighlight source lang="lua">Mission.SendNextHint(objectiveTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| objectiveTable || Lua Table
|}
'''Description''': Send the next hint in the Objective's hint array
'''Returns''': Nothing
=== SendNextMessage ===
<syntaxhighlight source lang="lua">Mission.SendNextMessage(fromCharacter, objectiveTable)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| fromCharacter || Lua Table
|-
| objectiveTable || Lua Table
|}
'''Description''': Send the next message in the Objective's message array from ''fromCharacter''


'''Returns''': Nothing
'''Returns''': Nothing
Line 322: Line 201:
|}
|}
'''Description''': Sets a numeric value of a key in mission Lua script.
'''Description''': Sets a numeric value of a key in mission Lua script.
'''Returns''': Nothing
=== StartVibrationEvent ===
<syntaxhighlight source lang="lua">Mission.StartVibrationEvent(objectName)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| objectName || string
|}
'''Description''': Start a mission object vibration event
'''Returns''': Nothing
=== StopVibrationEvent ===
<syntaxhighlight source lang="lua">Mission.StopVibrationEvent(objectName)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| objectName || string
|}
'''Description''': Stop a mission object vibration event


'''Returns''': Nothing
'''Returns''': Nothing
Line 329: Line 234:
This file is auto generated, please don't edit manually!
This file is auto generated, please don't edit manually!


'''Docs last hacked together on''': 22/01/2019 11:28
'''Docs last hacked together on''': 23/07/2020 11:58
[[Category:Modding]][[Category:LuaAPI]]
[[Category:Modding]][[Category:LuaAPI]]

Revision as of 12:40, 23 July 2020

Mission

Description

The Mission API controls the flow of the mission, this includes starting and stopping the mission, and dealing with objectives and other mission-related information

Functions

MissionStarted

Mission.MissionStarted()

Description: This should be called once the initial state of the mission has been set It will cause the game to begin gameplay

Returns: Nothing

MissionCompleted

Mission.MissionCompleted()

Description: This should be called when the final objective of the mission has been completed It will trigger the game to fade to black and return to the main menu

Returns: Nothing

MissionFailed

Mission.MissionFailed()

Description: This function will fail the current mission, as if Joe had been tazed (or similar).

Returns: Nothing

SpawnCharacter

Mission.SpawnCharacter(internalName)

Expected parameter types

Name Type
internalName string

Description: Spawn a registered character in the game

Returns: Nothing

ObjectiveIsActive

Mission.ObjectiveIsActive(objectiveName)

Expected parameter types

Name Type
objectiveName string

Description: Returns true if objective has been started but not completed yet.

Returns: bool

ObjectiveIsCompleted

Mission.ObjectiveIsCompleted(objectiveName)

Expected parameter types

Name Type
objectiveName string

Description: Returns true if objective has been completed.

Returns: bool

StartObjective

Mission.StartObjective(objectiveName)

Expected parameter types

Name Type
objectiveName string

Description: Start the provided objective

Returns: Nothing

CompleteObjective

Mission.CompleteObjective(objectiveName)

Expected parameter types

Name Type
objectiveName string

Description: Complete the provided objective

Returns: Nothing

GetCurrentObjective

Mission.GetCurrentObjective()

Description: Get the name of the current objective

Returns: string

TriggerAutoSave

Mission.TriggerAutoSave()

Description: Triggers an autosave, only if the game is current in a mission

Returns: Nothing

DevicesConnected

Mission.DevicesConnected()

Description: Call this AFTER all Devices have been connected to their networks. This allows DataPoints to be processed correctly.

Returns: Nothing

SetPlayerControlled

Mission.SetPlayerControlled(tf)

Expected parameter types

Name Type
tf bool

Description: Set whether the player is currently in control (or not). Used for cutscenes, and other things that we haven't thought of yet.

Returns: Nothing

GetBool

Mission.GetBool(key)

Expected parameter types

Name Type
key string

Description: Get a boolean value of a key in mission Lua script. Returns false if key doesn't exist.

Returns: bool

SetBool

Mission.SetBool(key, newBool)

Expected parameter types

Name Type
key string
newBool bool

Description: Sets a boolean value of a key in mission Lua script.

Returns: Nothing

GetString

Mission.GetString(key)

Expected parameter types

Name Type
key string

Description: Get a string value of a key in mission Lua script. Returns empty if key doesn't exist.

Returns: string

SetString

Mission.SetString(key, newString)

Expected parameter types

Name Type
key string
newString string

Description: Sets a string value of a key in mission Lua script.

Returns: Nothing

GetNumber

Mission.GetNumber(key)

Expected parameter types

Name Type
key string

Description: Get a numeric value of a key in mission Lua script. Returns 0 if key doesn't exist.

Returns: number

SetNumber

Mission.SetNumber(key, newValue)

Expected parameter types

Name Type
key string
newValue number

Description: Sets a numeric value of a key in mission Lua script.

Returns: Nothing

StartVibrationEvent

Mission.StartVibrationEvent(objectName)

Expected parameter types

Name Type
objectName string

Description: Start a mission object vibration event

Returns: Nothing

StopVibrationEvent

Mission.StopVibrationEvent(objectName)

Expected parameter types

Name Type
objectName string

Description: Stop a mission object vibration event

Returns: Nothing


This file is auto generated, please don't edit manually!

Docs last hacked together on: 23/07/2020 11:58