Mission Lua API: Difference between revisions

From Off Grid Wiki
Jump to navigation Jump to search
(Update)
No edit summary
(7 intermediate revisions by 2 users not shown)
Line 15: Line 15:
'''Description''': This should be called when the final objective of the mission has been completed
'''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
It will trigger the game to fade to black and return to the main menu
'''Returns''': Nothing
=== MissionFailed ===
<syntaxhighlight source lang="lua">Mission.MissionFailed()</syntaxhighlight>
'''Description''': This function will fail the current mission, as if Joe had been tazed (or similar).


'''Returns''': Nothing
'''Returns''': Nothing
Line 22: Line 28:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| characterTable || Lua Table
| characterTable || Lua Table
Line 33: Line 41:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| sender || string
| sender || string
Line 46: Line 56:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| networkTable || Lua Table
| networkTable || Lua Table
Line 54: Line 66:


=== ConnectToNetwork ===
=== ConnectToNetwork ===
<syntaxhighlight source lang="lua">Mission.ConnectToNetwork(characterTable, networkName, accessKey)</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.ConnectToNetwork(connector, targetNetwork, accessKey)</syntaxhighlight>
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
|-
| characterTable || Lua Table
! Name !! Type
|-
| connector || Lua Type
|-
|-
| networkName || string
| targetNetwork || Lua Type
|-
|-
| accessKey || string
| accessKey || string
Line 72: Line 86:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| sender || Lua Type
| sender || Lua Type
Line 88: Line 104:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| deviceTable || Lua Table
| deviceTable || Lua Table
Line 101: Line 119:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| deviceTable || Lua Table
| deviceTable || Lua Table
Line 114: Line 134:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| deviceTable || Lua Table
| deviceTable || Lua Table
Line 125: Line 147:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| deviceTable || Lua Table
| deviceTable || Lua Table
Line 131: Line 155:


'''Returns''': Nothing
'''Returns''': Nothing
=== ObjectiveIsActive ===
<syntaxhighlight source lang="lua">Mission.ObjectiveIsActive(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| objectiveName || string
|}
'''Description''': Returns true if objective has been started but not completed yet.
'''Returns''': bool
=== ObjectiveIsCompleted ===
<syntaxhighlight source lang="lua">Mission.ObjectiveIsCompleted(objectiveName)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| objectiveName || string
|}
'''Description''': Returns true if objective has been completed.
'''Returns''': bool


=== StartObjective ===
=== StartObjective ===
Line 136: Line 186:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| objectiveTable || Lua Table
| objectiveTable || Lua Table
Line 147: Line 199:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| objectiveTable || Lua Table
| objectiveTable || Lua Table
Line 158: Line 212:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| objectiveTable || Lua Table
| objectiveTable || Lua Table
Line 169: Line 225:
'''Expected parameter types'''
'''Expected parameter types'''
{| class="wikitable"
{| class="wikitable"
|-
! Name !! Type
|-
|-
| fromCharacter || Lua Table
| fromCharacter || Lua Table
Line 187: Line 245:
<syntaxhighlight source lang="lua">Mission.TriggerAutoSave()</syntaxhighlight>
<syntaxhighlight source lang="lua">Mission.TriggerAutoSave()</syntaxhighlight>
'''Description''': Triggers an autosave, only if the game is current in a mission
'''Description''': Triggers an autosave, only if the game is current in a mission
'''Returns''': Nothing
=== DevicesConnected ===
<syntaxhighlight source lang="lua">Mission.DevicesConnected()</syntaxhighlight>
'''Description''': Call this AFTER all Devices have been connected to their networks. This allows DataPoints to be processed correctly.
'''Returns''': Nothing
=== SetPlayerControlled ===
<syntaxhighlight source lang="lua">Mission.SetPlayerControlled(tf)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! 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 ===
<syntaxhighlight source lang="lua">Mission.GetBool(key)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! 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 ===
<syntaxhighlight source lang="lua">Mission.SetBool(key, newBool)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| key || string
|-
| newBool || bool
|}
'''Description''': Sets a boolean value of a key in mission Lua script.
'''Returns''': Nothing
=== GetString ===
<syntaxhighlight source lang="lua">Mission.GetString(key)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! 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 ===
<syntaxhighlight source lang="lua">Mission.SetString(key, newString)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| key || string
|-
| newString || string
|}
'''Description''': Sets a string value of a key in mission Lua script.
'''Returns''': Nothing
=== GetNumber ===
<syntaxhighlight source lang="lua">Mission.GetNumber(key)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! 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 ===
<syntaxhighlight source lang="lua">Mission.SetNumber(key, newValue)</syntaxhighlight>
'''Expected parameter types'''
{| class="wikitable"
|-
! Name !! Type
|-
| key || string
|-
| newValue || number
|}
'''Description''': Sets a numeric value of a key in mission Lua script.


'''Returns''': Nothing
'''Returns''': Nothing
Line 194: Line 355:
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''': 13/09/2017 14:00
'''Docs last hacked together on''': 15/11/2019 14:59
[[Category:Modding]][[Category:LuaAPI]]

Revision as of 18:05, 19 November 2019

Mission

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

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

AddCharacter

Mission.AddCharacter(characterTable)

Expected parameter types

Name Type
characterTable Lua Table

Description: Register and spawn a chracter in the game

Returns: Nothing

SendMessageToPlayer

Mission.SendMessageToPlayer(sender, message)

Expected parameter types

Name Type
sender string
message string

Description: Send an SMS with the contents _message_ from sender

Returns: Nothing

AddNetwork

Mission.AddNetwork(networkTable)

Expected parameter types

Name Type
networkTable Lua Table

Description: Register a network to the game

Returns: Nothing

ConnectToNetwork

Mission.ConnectToNetwork(connector, targetNetwork, accessKey)

Expected parameter types

Name Type
connector Lua Type
targetNetwork Lua Type
accessKey string

Description: Connect a device to a specified network

Returns: Nothing

SendData

Mission.SendData(sender, receiver, dataTable)

Expected parameter types

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

Mission.SetNetDeviceNFCData(deviceTable, dataTable)

Expected parameter types

Name Type
deviceTable Lua Table
dataTable Lua Table

Description: Sets NFC data on a mission object

Returns: Nothing

SetNetDeviceNFC

Mission.SetNetDeviceNFC(deviceTable, enabled)

Expected parameter types

Name Type
deviceTable Lua Table
enabled bool

Description: Set if a mission object supports NFCAddNetDevice

Returns: Nothing

AddNetDevice

Mission.AddNetDevice(deviceTable)

Expected parameter types

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

Mission.AddHackableDevice(deviceTable)

Expected parameter types

Name Type
deviceTable Lua Table

Description: Add a hackable device to the mission

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(objectiveTable)

Expected parameter types

Name Type
objectiveTable Lua Table

Description: Start the provided objective

Returns: Nothing

CompleteObjective

Mission.CompleteObjective(objectiveTable)

Expected parameter types

Name Type
objectiveTable Lua Table

Description: Complete the provided objective

Returns: Nothing

SendNextHint

Mission.SendNextHint(objectiveTable)

Expected parameter types

Name Type
objectiveTable Lua Table

Description: Send the next hint in the Objective's hint array

Returns: Nothing

SendNextMessage

Mission.SendNextMessage(fromCharacter, objectiveTable)

Expected parameter types

Name Type
fromCharacter Lua Table
objectiveTable Lua Table

Description: Send the next message in the Objective's message array from fromCharacter

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


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

Docs last hacked together on: 15/11/2019 14:59