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

23 lines
No EOL
267 B
Lua

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