mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +02:00
11 lines
362 B
Lua
11 lines
362 B
Lua
return function(game)
|
|
local U = dofile("tests/drivers/util.lua")
|
|
U.teleport(game, "OAKS_LAB", 7, 4, "up")
|
|
local ow = game.overworld
|
|
U.log("start:", ow.player.cellX, ow.player.cellY)
|
|
U.hold(game, "down", 20)
|
|
U.log("after down:", ow.player.cellX, ow.player.cellY)
|
|
U.hold(game, "left", 30)
|
|
U.log("after left:", ow.player.cellX, ow.player.cellY)
|
|
end
|