Difference between revisions of "RemoveReputationExact"
Jump to navigation
Jump to search
imported>Dandys (Created page with "{{Function |origin = VEGAS1 |summary = Adds an exact amount of reputation (fame/infamy) with a certain faction. |returnType = void |referenceType = |arguments = {{Fun...") |
imported>Dandys m |
||
Line 38: | Line 38: | ||
=='''Notes'''== | =='''Notes'''== | ||
*'''RemoveReputation''' | *'''RemoveReputation''' and '''RemoveReputationExact''' are only used by default in cases where the player is granted forgiveness. It should not be used, for example, as a way to punish the player for bad deeds by "removing" positive reputation. For that, add infamy using the function [[AddReputation]]. | ||
=='''See Also'''== | =='''See Also'''== |
Revision as of 01:42, 24 November 2012
< [[::Category:Functions|Category:Functions]]
A function included in the GECK Version 1.1.0.262 for Fallout: New Vegas.
Description
Adds an exact amount of reputation (fame/infamy) with a certain faction.
Syntax
RemoveReputationExact FactionID:editorID Fame/Infamy:int Amount:float
RemoveReputationExact removes an exact amount of reputation to a faction, unlike RemoveReputation, which only allows for preset values (small deed - big deed).
The first parameter determines if infamy (0) of fame (1) should be removed, whereas the second parameter determines the exact amount.
Examples
RemoveReputationExact RepNVGoodsprings 0 0.5
Removes 0.5 infamy from the Goodsprings faction.
RemoveReputationExact RepNVGoodsprings 1 10
Removes 10 fame from the Goodsprings faction.
Notes
- RemoveReputation and RemoveReputationExact are only used by default in cases where the player is granted forgiveness. It should not be used, for example, as a way to punish the player for bad deeds by "removing" positive reputation. For that, add infamy using the function AddReputation.