1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-22 04:37:47 +00:00
project-meteor-server/scripts/commands/EmoteStandardCommand.lua

23 lines
No EOL
269 B
Lua

--[[
EmoteStandardCommand Script
--]]
emoteTable = {
{},
};
function onEventStarted(player, actor, triggerName, emoteId)
if (player:getState() == 0) then
player:doEmote(emoteId);
end
player:endCommand();
end
function onEventUpdate(player, npc)
end