1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-24 21:57:45 +00:00
project-meteor-server/data/scripts/base/chara/npc/object/BookShelf.lua
2016-06-14 21:47:54 -04:00

11 lines
No EOL
232 B
Lua

function init(npc)
return false, false, 0, 0;
end
function onEventStarted(player, npc, triggerName)
player:runEventFunction("bookTalk");
end
function onEventUpdate(player, npc, step, menuOptionSelected)
player:endEvent();
end