Advertisement
Guest User

Factorio Max Ore Path

a guest
Jan 17th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. /c local surface=game.player.surface
  2. local oreName="iron-ore"
  3. local size=5
  4. local density=999999999999999
  5. for y=-size, size do
  6. for x=-size, size do
  7. surface.create_entity({name=oreName, amount=density, position={game.player.position.x+x, game.player.position.y+y}})
  8. end
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement