Files
scummvm/devtools/create_ultima/files/ultima6/scripts/se/player.lua
T
Paul Gilbert 84a2f10c49 ULTIMA: Add the individual files of ultima.dat to create_ultima folder
Since the ultima.dat is just a zip file, this should have been done
sooner. This will allow the tracking of changes to individual files
within the archive. Additionally, it will allow for future work
in-progress changes to files without taking the space of creating an
entirely new ultima.dat
2020-03-08 12:49:40 -07:00

17 lines
258 B
Lua

function player_pass()
printl("PASS")
end
--returns true if the player can move to rel_x, rel_y
function player_before_move_action(rel_x, rel_y)
return true
end
function player_post_move_action(did_move)
end
function player_attack()
--FIXME
end