Difference between revisions of "AddReputation"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>MrSlackPants
(New page: =='''Description'''== '''AddReputation''' is a new function used in '''Fallout: New Vegas'''. It is used to add either fame or infamy to a faction. =='''Syntax'''== AddReputation ''Fac...)
 
imported>MrSlackPants
(Cleaned up)
Line 1: Line 1:
=='''Description'''==


'''AddReputation''' is a new function used in '''Fallout: New Vegas'''. It is used to add either fame or infamy to a faction.
{{Function
 
|origin = VEGAS1
=='''Syntax'''==
  |summary = Adds a certain amount of reputation (fame/infamy) with a certain faction.
 
  AddReputation ''Faction'' ''Fame/Infamy(1/0)'' ''iAmount''


|returnType = void
|referenceType =
|arguments =
  {{FunctionArgument
  |Name = FactionID
  |Type = editorID
  |Optional = n
  }}{{FunctionArgument
  |Name = Fame/Infamy
  |Type = int
  |Optional = n
  }}{{FunctionArgument
  |Name = Amount
  |Type = int
  |Optional = n
  }}
}}
=='''Examples'''==
=='''Examples'''==


Line 17: Line 31:
Adds 10 '''fame''' to the GoodSprings faction.
Adds 10 '''fame''' to the GoodSprings faction.


=='''Notes'''==
*This function is new in the GECK for '''Fallout: New Vegas''', and was not available in the TES4 Construction Set nor the GECK for '''Fallout 3'''.


=='''See Also'''==
=='''See Also'''==
*[[GetReputation]]
*[[GetReputation]]
=='''Reference'''==
None provided.




[[Category:New Vegas Content]]
[[Category:New Vegas Content]]
[[Category:Functions (GECK Vegas 1.1)]]

Revision as of 06:21, 12 November 2010

< [[::Category:Functions|Category:Functions]]

A function included in the GECK Version 1.1.0.262 for Fallout: New Vegas.

Description

Adds a certain amount of reputation (fame/infamy) with a certain faction.

Syntax

[help]
AddReputation FactionID:editorID Fame/Infamy:int Amount:int

Examples

AddReputation RepNVGoodsprings 0 5

Adds 5 infamy to the GoodSprings faction.

AddReputation RepNVGoodsprings 1 10

Adds 10 fame to the GoodSprings faction.


See Also