WoW:API GetMoney: Difference between revisions

From AddOn Studio
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 ==


format could be expressed as ..ggggsscc
/script DEFAULT_CHAT_FRAME:AddMessage(GetMoney(),1,1,1);


Example:
/script SendChatMessage("I have "..GetMoney().." copper.")


/script DEFAULT_CHAT_FRAME:AddMessage(GetMoney(),1,1,1);
<big>'''Result'''</big>


Another Example:
1112233


/script SendChatMessage("I have "..GetMoney().." copper.")
[Player] says: I have 1112233 copper.


----
Assuming the player has {{gsc|111|22|33}}.
{{WoW API}}

Revision as of 00:55, 4 November 2006

WoW API < GetMoney

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.