CalculateFavorCost - Game
Member of: Game Script
Calculates how many favor points the player would have to spend to pay for a favor with the specified price.
SyntaxEdit
int Function CalculateFavorCost(int aiFavorPrice) native global
ParametersEdit
- aiFavorPrice: The raw price of the favor.
Return ValueEdit
How much that favor would actually cost the player.
ExamplesEdit
; Figure out how many points it would cost to buy a favor worth 10 points
int icost = Game.CalculateFavorCost(10)