1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-23 21:27:46 +00:00
project-meteor-server/data/scripts/base/chara/npc/populace/PopulaceStandard.lua

13 lines
325 B
Lua
Raw Normal View History

function init(npc)
return false, false, 0, 0;
end
function onEventStarted(player, npc)
2016-06-15 03:41:23 +01:00
player:SendMessage(0x20, "", "This PopulaceStandard actor has no event set. Actor Class Id: " .. tostring(npc:GetActorClassId()));
player:EndEvent();
2016-06-13 21:26:19 -04:00
end
function onEventUpdate(player, npc, blah, menuSelect)
2016-06-15 03:41:23 +01:00
player:EndEvent();
end