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

Add actor update flag for hotbar to send hotbar changes all at once. Add script for equipping all actions for a class/job. Fix multiple script errors. Fix multiple status flag errors Fix battle command db errors Fix error in spawnnpc and yolo.
20 lines
No EOL
559 B
Lua
20 lines
No EOL
559 B
Lua
require("global");
|
|
require("ability");
|
|
|
|
function onAbilityPrepare(caster, target, ability)
|
|
return 0;
|
|
end;
|
|
|
|
function onAbilityStart(caster, target, ability)
|
|
--27245: Swift Chameleon
|
|
if caster.HasTrait(27245) then
|
|
ability.recastTimeMs = ability.recastTimeMs - 60000;
|
|
end
|
|
return 0;
|
|
end;
|
|
|
|
function onSkillFinish(caster, target, skill, action, actionContainer)
|
|
--Need a way to get all targets with hate for player
|
|
--target.hateContainer.UpdateHate(caster, -840);
|
|
action.DoAction(caster, target, skill, actionContainer);
|
|
end; |