mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-21 20:27:47 +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
24 lines
No EOL
376 B
Lua
24 lines
No EOL
376 B
Lua
--[[
|
|
|
|
AttackWeaponSkill Script
|
|
|
|
Finds the correct weaponskill subscript to fire when a weaponskill actor is activated.
|
|
|
|
--]]
|
|
|
|
|
|
|
|
function onEventStarted(player, actor, triggerName)
|
|
|
|
worldMaster = getWorldMaster();
|
|
|
|
if (player:getState() != 2) then
|
|
player:sendGameMessage(worldMaster, 32503, 0x20);
|
|
end
|
|
|
|
player:endCommand();
|
|
|
|
end
|
|
|
|
function onEventUpdate(player, npc)
|
|
end |