noita_entangled_worlds/files/cbs/item_notify.lua
2024-05-13 13:07:28 +03:00

13 lines
No EOL
294 B
Lua

function throw_item()
GamePrint("Item thrown")
GlobalsSetValue("ew_thrown", tostring(GetUpdatedEntityID()))
end
function item_pickup()
GamePrint("Item pickup")
GlobalsSetValue("ew_picked", tostring(GetUpdatedEntityID()))
end
function kick()
-- GamePrint("Item kicked")
end