mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00

# Conflicts: # FFXIVClassic Map Server/FFXIVClassic Map Server.csproj # FFXIVClassic Map Server/Server.cs # data/scripts/player.lua # scripts/zones/193/npcs/pplStd_11@0C100.lua
23 lines
No EOL
269 B
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 |