mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 12:17:46 +00:00
11 lines
239 B
Lua
11 lines
239 B
Lua
![]() |
function init(npc)
|
||
|
return false, false, 0, 0;
|
||
|
end
|
||
|
|
||
|
function onEventStarted(player, npc, triggerName)
|
||
|
player:runEventFunction("materiabookTalk");
|
||
|
end
|
||
|
|
||
|
function onEventUpdate(player, npc, step, menuOptionSelected)
|
||
|
player:endEvent();
|
||
|
end
|