mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 13:17:45 +00:00
12 lines
418 B
Lua
12 lines
418 B
Lua
![]() |
function onInstantiate(npc)
|
||
|
return "/Chara/Npc/Populace/PopulaceStandard", false, false, false, false, false, npc.getActorClassId(), false, false, 0, 1, "TEST";
|
||
|
end
|
||
|
|
||
|
function onEventStarted(player, npc)
|
||
|
defaultSea = getStaticActor("DftSea");
|
||
|
player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGnibnpha_001", nil, nil, nil);
|
||
|
end
|
||
|
|
||
|
function onEventUpdate(player, npc)
|
||
|
player:endEvent();
|
||
|
end
|