Unable to reference IStorable for OnItemPickup hookSolved

Hi, I was trying to use the OnItemPickup Event and there seem to be an error because it doesn't find the IStorable interface. Which file I need to add to the project to get the interface? Thanks in advance.

EDIT: I tryed with the inventory interface instead of the IStorable one and it seem to work.

Docs are outdated, for V2 would be:

 

void OnItemPickup(Inventory inventory, WorldItemInteractServer player)
{
    Puts("OnItemPickup works!");
}

 

In response to klauz24 ():
Docs are outdated, for V2 would be: void OnItemPickup(Inventory inventory, WorldItemInteractServer...
Thank for your reply ;) I got it by myself :)
Locked automatically