1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-12 14:47:46 +00:00
kawari/resources/scripts/warp/WarpInnLimsaLominsa.lua
Joshua Goins 3139d63b91 Begin scripting the inn NPCs
This kinda works, you can now talk to them without locking up your
character but you aren't warped yet. I also need to clean up the mess of
the Lua API.
2025-05-05 20:51:49 -04:00

10 lines
271 B
Lua

--- TODO: find a way to hardcode it this way
EVENT_ID = 131079
function onTalk(actorId, player)
-- has inn access
player:play_scene(actorId, EVENT_ID, 00001, 8192, 0)
-- doesn't have inn access
--player:play_scene(actorId, EVENT_ID, 00002, 8192, 0)
end