mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-24 13:47:46 +00:00
11 lines
No EOL
247 B
Lua
11 lines
No EOL
247 B
Lua
require ("global")
|
|
require ("modifiers")
|
|
require ("ally")
|
|
|
|
function onSpawn(ally)
|
|
ally:SetMaxHP(69420)
|
|
ally:SetHP(ally:GetMaxHP())
|
|
ally.isAutoAttackEnabled = false;
|
|
ally.neutral = false
|
|
ally:SetMod(modifiersGlobal.Speed, 0)
|
|
end |