--[[ a.abolishin Кровожадная и призрачная мыши Атши. ]] function bot_Bat_r(A, h2l, pvp) if h2l then local oppList = aux.getPersList(aux.oppTeamNum(), true, nil, false) if oppList then bot_CheckHiLevelPers(oppList, h2l, bot_HiLevel2LowLevel) end if pvp then -- и своих (для честного pvp) local myList = aux.getPersList(my.teamNum, true, true, false) if myList then bot_CheckHiLevelPers(myList, h2l, bot_HiLevel2LowLevel) end end end local bot = PERS(my.persPtr) if bot_BatVamp == nil then bot_BatVamp = {} end if bot_BatVamp[bot.id] == nil then aux.useEffect({artId = A}) bot_BatVamp[bot.id] = 1 end if (my.status ~= FS_PS_ACTIVE) or (not my.oppPtr) then -- можем ли ходить? return end ATTACK(math.random(3)) end -- botID = 863 function bot_Bat() return bot_Bat_r(4603) end -- botID = 863 function bot_Bat_H2L_7() return bot_Bat_r(4603, 7) end -- botID = 863 function bot_Bat_H2L_PVP_7() return bot_Bat_r(4603, 7, true) end -- botID = 864 function bot_GhostBat() return bot_Bat_r(4603) end -- botID = 864 function bot_GhostBat_H2L_7() return bot_Bat_r(4603, 7) end -- botID = 864 function bot_GhostBat_H2L_PVP_7() return bot_Bat_r(4603, 7, true) end