mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 05:07:47 +00: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;
|