Get shop

From Kolmafia
Revision as of 11:03, 24 August 2020 by imported>Gausie
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Function Syntax

int [item] get_shop()

Returns a map where each key is an item in your Mall store, with the integer value how many you are currently selling.

Code Samples

The following example creates a function called "in_shop" which tells you how many of a given item is currently in your shop.

int[item] shop_items;
shop_items = get_shop();

void in_shop(string check) {
   item thing = to_item(check);
   if (thing == $item[none]) {
      print(check+" is not a valid item.", "red");
      return;
   }
   if (shop_items contains thing)
      print("Your shop currently has "+shop_items[thing]+" "+thing+".", "blue");
   else print("Your shop currently has 0 of "+thing, "blue");
}

//Check how many Mae Wests
in_shop("mae west");
//Check all items with greater than 4 fullness
foreach it in $items[]
   if (it.fullness > 4)
      in_shop(to_string(it));

See Also

shop_amount() | shop_limit()