mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
11 lines
241 B
Lua
11 lines
241 B
Lua
require ("global")
|
|
|
|
require ("ally")
|
|
|
|
function onSpawn(ally)
|
|
ally.isAutoAttackEnabled = false;
|
|
end;
|
|
|
|
function onCombatTick(ally, target, tick, contentGroupCharas)
|
|
allyGlobal.onCombatTick(ally, target, tick, contentGroupCharas);
|
|
end; |