Difference between revisions of "Get florist plants"

From Kolmafia
Jump to navigation Jump to search
imported>Bale
(r12244)
(No difference)

Revision as of 08:08, 19 November 2014

Function Syntax

string [location] [int] my_effects()

Returns the a map of all plants currently planted at each location.

Code Sample

Print all current plants.

foreach loc, counter, plant in get_florist_plants() {
   if( plant != "" ) {
      print( "Location '" + loc + "'" );
      print( "Plant " + counter + ": '" + plant + "'" );
   }
}

See Also

florist_available()