[0.12.x][v0.12.7] Bob's Enemies Mod
Moderator: bobingabout
-
- Inserter
- Posts: 28
- Joined: Sat Jun 11, 2016 1:49 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Is it possible to obtain the new artifacts from regular biter and spitter spawners? I'm playing with lower alien base frequency and richness settings than the default (with RSO) and all I've gotten are the vanilla and small vanilla artifacts. I saw in a youtube series that the player was getting all colors of the new artifacts from all spawners, but that was also an earlier 0.12 version of factorio.
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Do you have new artifacts enabled in the config?Metalface7 wrote:Is it possible to obtain the new artifacts from regular biter and spitter spawners? I'm playing with lower alien base frequency and richness settings than the default (with RSO) and all I've gotten are the vanilla and small vanilla artifacts. I saw in a youtube series that the player was getting all colors of the new artifacts from all spawners, but that was also an earlier 0.12 version of factorio.
By default it should be, but check it out.
(Config Mod)
-
- Inserter
- Posts: 28
- Joined: Sat Jun 11, 2016 1:49 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
They are enabled. That was the first thing I checked. Would the Rescaled Evolution Factor mod change things at all?TheSAguy wrote:Do you have new artifacts enabled in the config?Metalface7 wrote:Is it possible to obtain the new artifacts from regular biter and spitter spawners? I'm playing with lower alien base frequency and richness settings than the default (with RSO) and all I've gotten are the vanilla and small vanilla artifacts. I saw in a youtube series that the player was getting all colors of the new artifacts from all spawners, but that was also an earlier 0.12 version of factorio.
By default it should be, but check it out.
(Config Mod)
Edit: tried removing RSO, and it worked. The issue appears to be that RSO is preventing Bob's spawners from being generated.
- Arch666Angel
- Smart Inserter
- Posts: 1636
- Joined: Sun Oct 18, 2015 11:52 am
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Are you using an older RSO version? Because it works with everyone elseMetalface7 wrote:They are enabled. That was the first thing I checked. Would the Rescaled Evolution Factor mod change things at all?TheSAguy wrote:Do you have new artifacts enabled in the config?Metalface7 wrote:Is it possible to obtain the new artifacts from regular biter and spitter spawners? I'm playing with lower alien base frequency and richness settings than the default (with RSO) and all I've gotten are the vanilla and small vanilla artifacts. I saw in a youtube series that the player was getting all colors of the new artifacts from all spawners, but that was also an earlier 0.12 version of factorio.
By default it should be, but check it out.
(Config Mod)
Edit: tried removing RSO, and it worked. The issue appears to be that RSO is preventing Bob's spawners from being generated.
Angels Mods
I. Angel's Mods Subforum
II. Development and Discussion
III. Bugs & FAQ
"should be fixed"
I. Angel's Mods Subforum
II. Development and Discussion
III. Bugs & FAQ
"should be fixed"
-
- Inserter
- Posts: 28
- Joined: Sat Jun 11, 2016 1:49 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
I'm running RSO 1.5.6. Tried it again using different enemy settings and it worked - I didn't realize that it was only the elemental spawners and enemies that dropped the new artifacts, and I just needed to go further out to find the elemental spawners.Arch666Angel wrote:Are you using an older RSO version? Because it works with everyone elseMetalface7 wrote:They are enabled. That was the first thing I checked. Would the Rescaled Evolution Factor mod change things at all?TheSAguy wrote:Do you have new artifacts enabled in the config?Metalface7 wrote:Is it possible to obtain the new artifacts from regular biter and spitter spawners? I'm playing with lower alien base frequency and richness settings than the default (with RSO) and all I've gotten are the vanilla and small vanilla artifacts. I saw in a youtube series that the player was getting all colors of the new artifacts from all spawners, but that was also an earlier 0.12 version of factorio.
By default it should be, but check it out.
(Config Mod)
Edit: tried removing RSO, and it worked. The issue appears to be that RSO is preventing Bob's spawners from being generated.
-
- Manual Inserter
- Posts: 2
- Joined: Wed Jun 29, 2016 7:52 pm
- Contact:
Re: [0.11.22/0.12.x][v0.12.3] Bob's Enemies Mod
I've seen this as well: in fact, I've seen multiple enemy bases consumed in unending civil wars, with artefact drops spilling out to the edges of the chunk and murdering my FPS. It does make it easier to kill the bases, mind.crysanja wrote:something funny.
biters fighting each other !
guess it happens when an aoe from a spitter hits another spitter/biter.
does not happen that often, but i have seen it.
Not sure there's anything you can do about it: I assume the default AI code assumes all damage comes from the player or your own minions, and never considered alien AoE.
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
It seems that only way to prevent this currently is to make sure that enemies don't do aoe.
Since enemies can attack obstacle they have trouble pathing around it leads to big civil wars
Since enemies can attack obstacle they have trouble pathing around it leads to big civil wars
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
FYI, Veden wrote me some code that has fixed this in my NE Enemies mod.orzelek wrote:It seems that only way to prevent this currently is to make sure that enemies don't do aoe.
Since enemies can attack obstacle they have trouble pathing around it leads to big civil wars
Here is the code
Code: Select all
-- check for civil war
if event.force ~= nil then
if ((event.force.name == "enemy") and (event.force.name == event.entity.force.name)) then
if NE_Enemies_Config.allowCivilWar then
-- let the enemy die but prevent loot drop
event.entity.destroy()
else
-- check if player or player things are near the area of combat
local playerBattle = false
local battleRadius = 60
local playerObject = event.entity.surface.find_nearest_enemy({position = event.entity.position,
max_distance = battleRadius,
force = "enemy"})
if playerObject ~= nil then
playerBattle = true
end
-- get bitters that have been affected by splash damage
local deathRadius = 8
local enemyEntities = event.entity.surface.find_entities_filtered({area = {{x = event.entity.position.x - deathRadius, y = event.entity.position.y - deathRadius},
{x = event.entity.position.x + deathRadius, y = event.entity.position.y + deathRadius}},
force = "enemy"})
if not playerBattle then
-- kill around dead enemy to quell war
for _, enemyEntity in ipairs(enemyEntities) do
if (enemyEntity.type == "unit") and (enemyEntity.has_command()) then
enemyEntity.destroy()
end
end
else
-- retarget each splash affected bitter to enemies first, then they might turn on themselves once everything around them is dead
local searchRadius = 60
for _, enemyEntity in ipairs(enemyEntities) do
local newTarget = event.entity.surface.find_nearest_enemy({position = enemyEntity.position,
max_distance = searchRadius,
force = "enemy"})
if newTarget ~= nil then
if (enemyEntity.type == "unit") and (enemyEntity.has_command()) then
enemyEntity.set_command({type=defines.command.attack,
target=newTarget})
end
end
end
end
end
end
end
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
I'm 40 some hours into my first Bob's Mod playthrough, and I've finally got power armor. But something I'm very curious about is these massive weapon and armor upgrades in the game. In vanilla, the only weapon you really need is the flamethrower. If you have power armor 2, and enough legs and shields, you can kite enemies and burn down any size nest in seconds.
But Bob's Mods have some really elaborate and advanced weapons and armor. Does this mean that the enemies are proportionately more difficult? I hope so. Because if not, then all these great weapons are for nothing.
How much more difficult than vanilla are the Bob's enemies? Can we expect a real challenge which actually necessitates the Bob's Warfare suite?
But Bob's Mods have some really elaborate and advanced weapons and armor. Does this mean that the enemies are proportionately more difficult? I hope so. Because if not, then all these great weapons are for nothing.
How much more difficult than vanilla are the Bob's enemies? Can we expect a real challenge which actually necessitates the Bob's Warfare suite?
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
It's been a while since I looked at stats, but I think my Titan is on par with base game Behemoth. then you have my Badass behemoth and Leviathan on top of that. Plus the others show up at lower levels, so yes, harder.
Also, the combat is basically designed around the 0.12 game, when the flamethrower basically just tickled the enemies, it has seen quite the buff in 0.13.
Also, the combat is basically designed around the 0.12 game, when the flamethrower basically just tickled the enemies, it has seen quite the buff in 0.13.
-
- Fast Inserter
- Posts: 110
- Joined: Fri Jul 01, 2016 2:46 am
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
The behemoth worms are freakin' terrifying. I have modular armor, tho no shields yet, and they one shot me. It's nice to know that my fear was fully justified. It was the third one that got me, they have almost but not quite the range of the sniper rifle...
-
- Filter Inserter
- Posts: 778
- Joined: Sun Sep 07, 2014 12:59 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
At 82% evolution my Mk1 defensive laser turrets are really struggling to keep the waves under control. Also, with all the splash damage, roughly one lamp blows up every few minutes (I like to have my defensive wall well lit ). Also, not sure if it's RSO, Bob's or just base game updates, but I find biter expansion has become really aggressive. I've been clearing nests in the area regularly, but every so often I find a new nest that set up camp almost on my doorstep. Robot army is a welcome addition to this game (although squads of 50 terminators are already getting wiped out rapidly now ) And at 80% evolution, I haven't even figured out where Angel's mods have hidden away the gems, so upgrading those turrets is still a bit of a challenge too
I don't have OCD, I have CDO. It's the same, but with the letters in the correct order.
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Good luck with that one! my first time trying to get some diamonds for personal use it took me about 2 hours to set up!Boogieman14 wrote:I haven't even figured out where Angel's mods have hidden away the gems, so upgrading those turrets is still a bit of a challenge too
-
- Filter Inserter
- Posts: 778
- Joined: Sun Sep 07, 2014 12:59 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
I'm just about starting on automating refining into the various ores, so far I've just been smelting the crushed ores straight into plates, doing a tiny bit of sorting to get things like silicon, gold and aluminium. Desperately need to scale that up (and then i'm playing without bob's electronics and angel's petrochem, tried that in a previous game but that grew a bit over my head)
I don't have OCD, I have CDO. It's the same, but with the letters in the correct order.
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Electronics is a cake walk compared to Petrochem
-
- Long Handed Inserter
- Posts: 80
- Joined: Fri Aug 05, 2016 10:07 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
get geodes from the floatation process and process geodes into gems. You can also switch over to sniper turrets which have epic range and damage even at mark 1-it more than makes up for the crappy firerate.Boogieman14 wrote:At 82% evolution my Mk1 defensive laser turrets are really struggling to keep the waves under control. Also, with all the splash damage, roughly one lamp blows up every few minutes (I like to have my defensive wall well lit ). Also, not sure if it's RSO, Bob's or just base game updates, but I find biter expansion has become really aggressive. I've been clearing nests in the area regularly, but every so often I find a new nest that set up camp almost on my doorstep. Robot army is a welcome addition to this game (although squads of 50 terminators are already getting wiped out rapidly now ) And at 80% evolution, I haven't even figured out where Angel's mods have hidden away the gems, so upgrading those turrets is still a bit of a challenge too
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Hello
Sry my english
Is there any way turn off drop small arctifact? Picking all drop with my high density enemy spawner settings is too boring
Sry my english
Is there any way turn off drop small arctifact? Picking all drop with my high density enemy spawner settings is too boring
- bobingabout
- Smart Inserter
- Posts: 7352
- Joined: Fri May 09, 2014 1:01 pm
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
Yes there is.
Use bobconfig, the config mod.
Currently it requires manually editing a text file, but with 0.15 it should be in a menu in game.
Use bobconfig, the config mod.
Currently it requires manually editing a text file, but with 0.15 it should be in a menu in game.
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
-- Enemies mod
-- if set to true, Enemies will drop small versions of Alien Artifacts.
bobmods.config.enemies.EnableSmallArtifacts = false
Only this line, right?
-- if set to true, Enemies will drop small versions of Alien Artifacts.
bobmods.config.enemies.EnableSmallArtifacts = false
Only this line, right?
- Deadly-Bagel
- Smart Inserter
- Posts: 1498
- Joined: Wed Jul 13, 2016 10:12 am
- Contact:
Re: [0.12.x][v0.12.7] Bob's Enemies Mod
I installed Loot Chest mod, much more convenient. Some still sneak into my inventory but it's not too bad, and you save a lot of running around. Then you can make a cool setup to sort the different colour artefacts and send the little ones off to be turned into big ones ^^
Also is it just me or are Laser Robots somewhat underwhelming considering their build time and expense?
I've never known them to be this aggressive in vanilla and I'm running just Bob's Mods and a few little helpers. Yeah from about 80% evolution (now at 90%) it's like I'll clear an area for a new outpost, run off to get some rails and by the time I come back they've moved in again! While building an outpost to process military hardware (long overdue MK5 laser towers, bots and diamond laser rifle ammo) I cleared the same nest four times.Boogieman14 wrote:Also, not sure if it's RSO, Bob's or just base game updates, but I find biter expansion has become really aggressive. I've been clearing nests in the area regularly, but every so often I find a new nest that set up camp almost on my doorstep.
Also is it just me or are Laser Robots somewhat underwhelming considering their build time and expense?
Money might be the root of all evil, but ignorance is the heart.