Mineur_Tycoon/script/test.lua
2025-04-11 22:22:37 +02:00

19 lines
261 B
Lua

mtprint("hello")
machine = add_machine(10, 10)
mtprint(machine.id)
machine.type = 2
mtprint(machine.type)
pos = machine.pos
machine.pos = pos
mtprint(pos.x)
machine.pos.x = 50
machine.storage[0] = 1
function on_tick(game)
end
function on_frame(game)
end