Back to index...

NameTypeDeprecatedSecureDescription
Event.Faction.NotorietySignals a change in the player's faction notoriety.
Inspect.Faction.DetailfunctionProvides detailed information about factions.
Inspect.Faction.ListfunctionReturns a table of all known factions.

Event.Faction.Notoriety

Signals a change in the player's faction notoriety.

Usage:

Event.Faction.Notoriety(notoriety)
ParameterTypeDatatypeDescription
notorietyparametervariantNew notoriety values, in key/value form.

Inspect.Faction.Detail

Provides detailed information about factions.

Usage:

detail = Inspect.Faction.Detail(faction)
details = Inspect.Faction.Detail(factions)
ParameterTypeDatatypeDescription
factionparameterfactionThe identifier of the faction to retrieve detail for.
factionsparametertableA table of identifiers of factions to retrieve detail for.
detailresulttableDetail table for a single faction.
detailsresulttableDetail tables for all requested factions. The key is the faction ID, the value is the faction's detail table.
members
categoryName Name of the faction's category.
id The ID of the requested element.
name The faction's name.
notoriety The current notoriety you have with this faction.

Inspect.Faction.List

Returns a table of all known factions.

Usage:

factions = Inspect.Faction.List()
ParameterTypeDatatypeDescription
factionsresulttableAll known factions, in {id = notoriety} format.

Back to index...