Difference between revisions of "To coinmaster"

From Kolmafia
Jump to navigation Jump to search
imported>Lostcalpolydude
(The code sample didn't work. A new one is needed.)
imported>Bale
(It wasn't so hard to fix that you had to delete the entire code sample.)
Line 15: Line 15:
 
}}|
 
}}|
  
needscode=yes|
+
code1={{CodeSample|
 +
title=Code Sample|
 +
description=This sells off all the Island War vendor trash to the appropriate coinmasters for quarters and dimes.|
 +
code=
 +
<syntaxhighlight>
 +
foreach trash in $items[red class ring, blue class ring, white class ring, PADL Phone,
 +
pink clay bead, purple clay bead, green clay bead, communications windchimes]
 +
  if(item_amount(trash) > 0)
 +
      sell(trash.buyer, item_amount(trash), trash);
 +
</syntaxhighlight>
 +
}}|
 +
 
  
 
see_also={{SeeAlso|visit|is_accessible|buys_item|sells_item}}|
 
see_also={{SeeAlso|visit|is_accessible|buys_item|sells_item}}|

Revision as of 04:21, 18 March 2012

Function Syntax

boolean to_coinmaster(string store )

  • store is hopefully the name of a coinmaster

Code Sample

This sells off all the Island War vendor trash to the appropriate coinmasters for quarters and dimes.

foreach trash in $items[red class ring, blue class ring, white class ring, PADL Phone, 
 pink clay bead, purple clay bead, green clay bead, communications windchimes]
   if(item_amount(trash) > 0)
      sell(trash.buyer, item_amount(trash), trash);

See Also

visit() | is_accessible() | buys_item() | sells_item()