Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
mNo edit summary
No edit summary
Line 1: Line 1:
 
{{wowapi}}
 
{{wowapi}}
 
Sets the amount of money offered as part of the player's trade offer.
 
SetTradeMoney(copper);
   
 
== Arguments ==
----
 
  +
; copper : Amount of money, in copper, to offer for trade.
;''Arguments''
 
   
:''amount - Amount of money to drop in the trade window in copper.''
 
   
 
== Example ==
----
 
  +
The following will put {{cost|g=1}} into the trade window:
;''Returns''
 
  +
SetTradeMoney(1 * 100 * 100);
 
:;nil
 
 
----
 
;''Example''
 
This example will drop in 1 gold.
 
SetTradeMoney(10000);
 
 
;''Result''
 
 
----
 
;''Description''
 
 
: Drops the <amount> of money (in copper pieces) into the trade window.
 

Revision as of 14:45, 15 March 2010

Sets the amount of money offered as part of the player's trade offer.

SetTradeMoney(copper);

Arguments

copper
Amount of money, in copper, to offer for trade.


Example

The following will put 1g into the trade window:

SetTradeMoney(1 * 100 * 100);