WoW:API SplitMoney: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (formatting)
m (Move page script moved page API SplitMoney to API SplitMoney without leaving a redirect)
 
(5 intermediate revisions by 5 users not shown)
Line 1: Line 1:
'''USE THIS FUNCTION CAREFULLY'''<br>
{{wowapi|removed=1.9.1}}
As it seems to split all your money to your party members ''without'' further warning when called without argument! 


''The rest of this page not entirely confirmed at the moment''
Splits the specified amount of copper between all of your party members from your money.


----
SplitMoney([copper])


Splits given money amongst the current party members. (including yourself)  Defaults to all your money.
== Parameters ==
=== Arguments ===
* copper (number) - amount of copper to split between party members. If nil, all of your current money is split.


SplitMoney("goldsilvercopper")
== Example ==
 
  SplitMoney(30); --1
----
  SplitMoney(203); --2
;''Arguments''
  SplitMoney(30201); --3
 
:A string containing numbers representing the amount of money to be split. 
 
----
;''Example''
  SplitMoney("30"); --1
  SplitMoney("203"); --2
  SplitMoney("20100"); --3
  SplitMoney(); --4
  SplitMoney(); --4


;''Result''
;Result
1. splits 30 copper
# Splits 30 copper.
2. splits 2 silver and 3 copper
# Splits 2 silver and 3 copper.
3. splits 2 gold and 1 silver
# Splits 3 gold and 2 silver and 1 copper.
4. splits all the money in your possession
# Splits all the money in your possession.
----
{{Template:WoW API}}
[[Category:API Functions|SetMapZoom]]
[[Category:API World Map Functions|SetMapZoom]]
 


[[Category:API Functions|SplitMoney]]
== Detials ==
[[Category:API Group Functions|SplitMoney]]
Defaults to all your current money.

Latest revision as of 04:47, 15 August 2023

WoW API < SplitMoney

Splits the specified amount of copper between all of your party members from your money.

SplitMoney([copper])

Parameters

Arguments

  • copper (number) - amount of copper to split between party members. If nil, all of your current money is split.

Example

SplitMoney(30); --1
SplitMoney(203); --2
SplitMoney(30201); --3
SplitMoney(); --4
Result
  1. Splits 30 copper.
  2. Splits 2 silver and 3 copper.
  3. Splits 3 gold and 2 silver and 1 copper.
  4. Splits all the money in your possession.

Detials

Defaults to all your current money.