m
{{wowapi}}, cleanup.
No edit summary |
m ({{wowapi}}, cleanup.) |
||
| Line 1: | Line 1: | ||
{{wowapi}} | |||
{{removedapi|1.9.1|}} | {{removedapi|1.9.1|}} | ||
Splits the specified amount of copper (defaults to all your current money) between all of your party members. | |||
SplitMoney([copper]); | |||
SplitMoney( | |||
---- | ---- | ||
;''Arguments'' | ;''Arguments'' | ||
: | |||
: | :; copper : Number - amount of copper to split between party members. If nil, all your current money is split. | ||
---- | ---- | ||
;''Example'' | ;''Example'' | ||
SplitMoney( | SplitMoney(30); --1 | ||
SplitMoney( | SplitMoney(203); --2 | ||
SplitMoney( | SplitMoney(30201); --3 | ||
SplitMoney(); --4 | SplitMoney(); --4 | ||
;''Result'' | ;''Result'' | ||
# Splits 30 copper. | |||
# Splits 2 silver and 3 copper. | |||
# Splits 3 gold and 2 silver and 1 copper. | |||
# Splits all the money in your possession. | |||