Difference between revisions of "Item drops"

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
m (wrong category)
imported>StDoodle
m
Line 1: Line 1:
 
{{#vardefine:name|item_drops}}
 
{{#vardefine:name|item_drops}}
{{#vardefine:return_type|int[item]}}
+
{{#vardefine:return_type|int [item]}}
 
{{#vardefine:aggregate|yes}}
 
{{#vardefine:aggregate|yes}}
  

Revision as of 23:29, 6 March 2010



Function Syntax

int [item] item_drops(monster m )

Returns a map of the monster's drop rates, indexed by item names.

Code Samples

Prints the drops of a certain monster.

void drops(monster mob){
   int[item] drops = item_drops(mob);
   print("Monster: " + mob);
   foreach i in drops {
      print("Drop rate of " + i + " is " + drops[i]*(1+item_drop_modifier()/100) + "%");
   }
}

See Also

meat_drop() | item_drop_modifier()()

Special

This function has a known bug: if a monster drops the same item more than once, the map only returns the last rate in that monster's entry in monsters.txt.