Difference between revisions of "SetPartyPlotFlag"
From Dragon Age Toolset Wiki
BryanDerksen (Talk | contribs) m (1 revision: Importing auto-generated function articles) |
m (→Remarks: fixing link) |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
{{dafunction | {{dafunction | ||
| − | |name=SetPartyPlotFlag | + | |name = SetPartyPlotFlag |
| − | |brief=Sets the value of a plot flag | + | |brief = Sets the value of a plot flag |
| − | |param1type=object | + | |param1type = object |
| − | |param1name=oParty | + | |param1arra = |
| − | |param1desc= | + | |param1name = oParty |
| − | |param2type=string | + | |param1default = |
| − | |param2name=strPlot | + | |param1desc = party object |
| − | |param2desc= | + | |param2type = string |
| − | |param3type=int | + | |param2arra = |
| − | |param3name=nFlag | + | |param2name = strPlot |
| − | |param3desc= | + | |param2default = |
| − | |param4type=int | + | |param2desc = plot name to query |
| − | |param4name=nValue | + | |param3type = int |
| − | |param4desc= | + | |param3arra = |
| − | |param5type=int | + | |param3name = nFlag |
| − | |param5name=nCallScript | + | |param3default = |
| − | |param5desc=Whether or not to call the plot script | + | |param3desc = plot flag number to modify (0-127) |
| − | |returntype=void | + | |param4type = int |
| − | |returndesc= | + | |param4arra = |
| − | |sourcefile=script.ldf | + | |param4name = nValue |
| − | + | |param4default = | |
| + | |param4desc = TRUE, to set the plot flag, or FALSE | ||
| + | |param5type = int | ||
| + | |param5arra = | ||
| + | |param5name = nCallScript | ||
| + | |param5default = FALSE | ||
| + | |param5desc = Whether or not to call the plot script | ||
| + | |returntype = void | ||
| + | |returnarra = | ||
| + | |returndesc = | ||
| + | |sourcemodule = | ||
| + | |sourcefile = script.ldf | ||
}} | }} | ||
| − | |||
== Description == | == Description == | ||
<!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --> | <!-- This section contains the full description from the functions comments. Do not change unless you are confident these are incomplete or incorrect. --> | ||
Sets the state of a plot flag in a party's plot table. | Sets the state of a plot flag in a party's plot table. | ||
| + | == Remarks == | ||
| + | <!-- This section contains additional comments, observations and known issues. --> | ||
| + | [[OBJECT_INVALID keyword|OBJECT_INVALID]] is valid for the '''oParty''' parameter (see [[GetParty]]). | ||
| − | + | The plot's GUID and ResRef are both valid for the '''strPlot''' parameter. | |
| − | + | ||
| + | This function cannot be used to set a DEFINED flag's value. | ||
<!-- == Examples == --> | <!-- == Examples == --> | ||
<!-- This section contains examples transcluded from the snippet library. --> | <!-- This section contains examples transcluded from the snippet library. --> | ||
| Line 36: | Line 48: | ||
== See also == | == See also == | ||
<!-- This section contains links to articles, functions or constant groups. --> | <!-- This section contains links to articles, functions or constant groups. --> | ||
| − | [[GetPartyPlotFlag | + | [[GetPartyPlotFlag]] |
[[Category: Plot manager functions]] | [[Category: Plot manager functions]] | ||
Latest revision as of 21:28, 6 August 2011
Sets the value of a plot flag
void SetPartyPlotFlag(
object oParty,
string strPlot,
int nFlag,
int nValue,
int nCallScript = FALSE
);
object oParty,
string strPlot,
int nFlag,
int nValue,
int nCallScript = FALSE
);
- Parameters:
- oParty
- party object
- strPlot
- plot name to query
- nFlag
- plot flag number to modify (0-127)
- nValue
- TRUE, to set the plot flag, or FALSE
- nCallScript
- Whether or not to call the plot script
- Returns:
- Nothing.
- Source:
- script.ldf
Description
Sets the state of a plot flag in a party's plot table.
Remarks
OBJECT_INVALID is valid for the oParty parameter (see GetParty).
The plot's GUID and ResRef are both valid for the strPlot parameter.
This function cannot be used to set a DEFINED flag's value.