Game Stats 2.0

by Pirate

The indicator of evolution, the number of killed biters and more. Original mod by Ajick. 2.0 compatible version by filip-t

Utilities
3 months ago
2.0
604

g Add statistics options

3 months ago

Hi!
Is it possible to add the following parameters to the statistics:

  1. FPS/UPS indicator
  2. Time of day (it seems to be different for each planet)
  3. Current player position indicator in the format x=0,y=0
  4. Expected remaining research time
3 months ago

I'll look into it. No promises.
Expected remaining research time looks like a nightmare to track. Definitely the least likely one.

3 months ago
(updated 3 months ago)

Hi!
There seems to be a function for getting coordinates

local math = require("__flib__.math")

return function(player)
  if not storage.players[player.index].settings.show_position then
    return
  end

  local position = player.position

  return { "", { "statsgui.position" }, " = ", math.round(position.x), ", ", math.round(position.y) }
end

New response