mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
13 lines
No EOL
294 B
Lua
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 |