Difference between revisions of "GetGoldValue - Form"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>PurpleLunchbox
imported>Fg109
(Undo revision 31586 by PurpleLunchbox (talk) - this is a vanilla function)
Line 1: Line 1:
[[Category:Scripting]]
[[Category:Scripting]]
[[Category:Papyrus]]
[[Category:Papyrus]]
'''SKSE Member of:''' [[Form Script]]
'''Member of:''' [[Form Script]]


Returns the value of this form in gold. If called on a form that doesn't have a value (like a quest), it will return -1. (This function requires SKSE)
Returns the value of this form in gold. If called on a form that doesn't have a value (like a quest), it will return -1.


== Syntax ==
== Syntax ==

Revision as of 02:54, 10 May 2012

Member of: Form Script

Returns the value of this form in gold. If called on a form that doesn't have a value (like a quest), it will return -1.

Syntax

int Function GetGoldValue() native

Parameters

None

Return Value

The gold value of this form, or -1 if it doesn't have a value.

Examples

if jewel.GetGoldValue() > 100
  Debug.Trace("Wow, that's one pricy gem!")
endIf

See Also