Difference between revisions of "AddReputation"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Dandys
imported>Dandys
Line 29: Line 29:
The amount of reputation points that these integers correspond to are determined by game settings.
The amount of reputation points that these integers correspond to are determined by game settings.


Integer (1-5) Amount of real reputation points added
Integer (1-5) Amount of real reputation points added
1 fReputationBumpVeryMinor
1 fReputationBumpVeryMinor
2 fReputationBumpMinor
2 fReputationBumpMinor
3 fReputationBumpAverage
3 fReputationBumpAverage
4 fReputationBumpMajor
4 fReputationBumpMajor
5 fReputationBumpVeryMajor
5 fReputationBumpVeryMajor


=='''Examples'''==
=='''Examples'''==

Revision as of 21:08, 10 December 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


AddReputation adds a certain amount of reputation to a faction, unlike AddReputationExact, it only allows 1-5, whereas 1 is a small deed done, and 5 is a big deed.

The first integer determines if infamy (0) of fame (1) should be added, whereas the second integer determines the exact amount (1-5)

If one wishes to add an exact amount of reputation, use AddReputationExact.

The amount of reputation points that these integers correspond to are determined by game settings.

Integer (1-5) Amount of real reputation points added
1 fReputationBumpVeryMinor
2 fReputationBumpMinor
3 fReputationBumpAverage
4 fReputationBumpMajor
5 fReputationBumpVeryMajor

Examples

AddReputation RepNVGoodsprings 0 5

The player has done a big deed against this faction, causing a big loss of fame.

AddReputation RepNVGoodsprings 1 1

The player has done a small deed for this faction, causing a small gain of fame.


See Also