Difference between revisions of "GetReputation"
Jump to navigation
Jump to search
imported>MrSlackPants (New page: =='''Description'''== '''GetReputation''' is a new function used in '''Fallout: New Vegas'''. It is used to return a reputation value with a given faction. (Reputation can either be fame ...) |
imported>MrSlackPants (Cleaned up.) |
||
Line 1: | Line 1: | ||
{{Function | |||
|origin = VEGAS1 | |||
|summary = Returnes the current reputation with a certain faction. | |||
|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 13: | Line 27: | ||
Returns 1 if the player has more then 10 '''fame''' with the GoodSprings faction. | Returns 1 if the player has more then 10 '''fame''' with the GoodSprings faction. | ||
if GetReputation RepNVGoodsprings 0 | if GetReputation RepNVGoodsprings 0 <30 | ||
Returns 1 if the player has | Returns 1 if the player has less than 30 '''infamy''' with the GoodSprings faction. | ||
=='''See Also'''== | =='''See Also'''== | ||
*[[AddReputation]] | *[[AddReputation]] | ||
[[Category:New Vegas Content]] | [[Category:New Vegas Content]] | ||
[[Category:Functions (GECK Vegas 1.1)]] |
Revision as of 06:22, 12 November 2010
< [[::Category:Functions|Category:Functions]]
A function included in the GECK Version 1.1.0.262 for Fallout: New Vegas.
Description
Returnes the current reputation with a certain faction.
Syntax
GetReputation FactionID:editorID Fame/Infamy:int Amount:int
Examples
if GetReputation RepNVGoodsprings 1 >10
Returns 1 if the player has more then 10 fame with the GoodSprings faction.
if GetReputation RepNVGoodsprings 0 <30
Returns 1 if the player has less than 30 infamy with the GoodSprings faction.