WoW:API GetMoney: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
{{wowapi}} __NOTOC__ | |||
Returns an integer value of your held money. | Returns an integer value of your held money. | ||
This will need to be parsed to display gold, silver, copper seperately. | money = GetMoney(); | ||
== Parameters == | |||
<big>'''Arguments'''</big> | |||
:None | |||
<big>'''Returns'''</big> | |||
:;money : Number - The amount of money in copper. This will need to be parsed to display gold, silver, copper seperately. Format could be expressed as ..ggggsscc | |||
== Example == | |||
/script DEFAULT_CHAT_FRAME:AddMessage(GetMoney(),1,1,1); | |||
/script SendChatMessage("I have "..GetMoney().." copper.") | |||
/ | <big>'''Result'''</big> | ||
1112233 | |||
[Player] says: I have 1112233 copper. | |||
Assuming the player has {{gsc|111|22|33}}. | |||
{{ | |||
Revision as of 00:55, 4 November 2006
Returns an integer value of your held money.
money = GetMoney();
Parameters
Arguments
- None
Returns
- money
- Number - The amount of money in copper. This will need to be parsed to display gold, silver, copper seperately. Format could be expressed as ..ggggsscc
Example
/script DEFAULT_CHAT_FRAME:AddMessage(GetMoney(),1,1,1);
/script SendChatMessage("I have "..GetMoney().." copper.")
Result
1112233
[Player] says: I have 1112233 copper.
Assuming the player has Template:Gsc.