--[[ ]] function bot_admin_KillSheara() local persList = aux.getPersList(aux.oppTeamNum(), true) local sheara = nil if persList then for k, persPtr in pairs(persList) do local pers = PERS(persPtr) if pers.artId == 702 then sheara = persPtr break end end end if sheara then aux.useEffect({artId = 2608}, sheara) end end function bot_admin_simple_heal() local bot = PERS(my.persPtr) -- можем ли ходить? if my.status ~= FS_PS_ACTIVE then return end -- лечилка local hpC = bot.hp/bot.hpMax if (hpC < 0.5) and (#aux.activeEffects(my.persPtr, {artId = 56}) < 1) then aux.useEffect({artId = 56}) end -- физ атака ATTACK(math.random(3)) end