WoW API: GetPetFoodTypes

From AddOn Studio
Revision as of 15:05, 7 January 2007 by WoWWiki>Hobinbot (demoted headings)
Jump to navigation Jump to search

WoW API < GetPetFoodTypes

local PetFoodList = {GetPetFoodTypes()};

Returns

Returns a list with strings.

Possible strings

  • Meat
  • Fish
  • Fruit
  • Fungus
  • Bread
  • Cheese

Example

To print every string from the list into the default chatframe.

if(PetFoodList[1] ~= nil)then
    local index, j;
    for index, j in PetFoodList do
        if (PetFoodList[index] ~= nil) then	
            DEFAULT_CHAT_FRAME:AddMessage(PetFoodList[index]);
        end
    end
end