View Single Post
03/04/14, 07:14 AM   #1
Batto
Join Date: Mar 2014
Posts: 2
Question Event_loot_received

Can someone explain me how to use this event? ->
EVENT_LOOT_RECEIVED (string receivedBy, string itemName, integer quantity, integer itemSound, integer lootType, bool self)

my guess would be:

EVENT_MANAGER:RegisterForEvent("xXx", EVENT_LOOT_RECEIVED, OnLootReceived)

function OnLootReceived(a,b,c,d,e,f)
--here u can use the variables a,b,c,d,e,f which contain the information receivedBy, itemName, quantity, itemSound, lootType, self
end

and i would like to post the itemname to the chatwindow or as popup text with or without icon (cause using auto loot. you dont know what you loot, you need to check the inventory for it)

if my guess is wrong, how do u extract the information from the event
  Reply With Quote