Get florist plants

From Kolmafia
Revision as of 08:08, 19 November 2014 by imported>Bale (r12244)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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()