mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 21:27:46 +00:00
10 lines
226 B
Lua
10 lines
226 B
Lua
require ("global")
|
|
require ("ally")
|
|
|
|
function onSpawn(ally)
|
|
ally:SetMaxHP(69420)
|
|
ally:SetHP(ally:GetMaxHP())
|
|
ally.isAutoAttackEnabled = false;
|
|
ally.neutral = false
|
|
ally:SetMod(modifiersGlobal.Speed, 0)
|
|
end
|