Search found 4 matches
- Sat Jun 23, 2018 10:44 pm
- Forum: General discussion
- Topic: Is there a shield tank mod?
- Replies: 5
- Views: 2639
Is there a shield tank mod?
The tank in the game is pretty bad atm, i'm looking for a mod that just adds in the ability to have a shield on the tank, like the power armor module. Do any of you guys know of any?
- Wed Feb 21, 2018 6:10 am
- Forum: Modding help
- Topic: Spawn Item Command?
- Replies: 4
- Views: 105142
Spawn Item Command?
Anyone know the command to spawn in items using the console in game? all the commands i've found are long outdated
- Fri Feb 02, 2018 9:17 pm
- Forum: General discussion
- Topic: Deleting spawners within a radius?
- Replies: 3
- Views: 2572
Re: Deleting spawners within a radius?
thanks!DaveMcW wrote:Code: Select all
/c radius = 500 p = game.player.position enemies = game.player.surface.find_entities_filtered{area={{p.x-radius,p.y-radius},{p.x+radius,p.y+radius}}, force=game.forces.enemy} for _,enemy in pairs(enemies) do enemy.destroy() end
- Fri Feb 02, 2018 8:23 pm
- Forum: General discussion
- Topic: Deleting spawners within a radius?
- Replies: 3
- Views: 2572
Deleting spawners within a radius?
So i'm in my first map and i realize i would have liked to turn off the automatic spread of alien bases. I was hoping someone knows a command to delete everything hostile (spawners, biters, spitters, worms, etc) within a specified radius. i've done some googling but all the commands i found where ...