Select Idle Fabricators hotkey

Discussion in 'Planetary Annihilation General Discussion' started by cptconundrum, December 2, 2014.

  1. cptconundrum

    cptconundrum Post Master General

    Messages:
    4,186
    Likes Received:
    4,900
    Up until now I have always been able to use the select all idle fabricators hotkey to select every idle fabber on the current planet. This seems to have changed to only selecting the ones that are currently on the screen. Can this be changed back? For idle factories there are options to select all idle factories on screen and select all idle factories. Maybe we could get both options for fabricators too?
    zihuatanejo, mot9001, jtibble and 2 others like this.
  2. cptconundrum

    cptconundrum Post Master General

    Messages:
    4,186
    Likes Received:
    4,900
    Code:
    idleFabber: function () { engine.call("select.idleFabber"); },
    allFabbers: function () { engine.call("select.allFabbers"); },
    allFabbersOnScreen: function () { engine.call("select.allFabbersOnScreen"); },
    allFactories: function () { engine.call("select.allFactories"); },
    allIdleFactories: function () { engine.call("select.allIdleFactories"); },
    allFactoriesOnScreen: function () { engine.call("select.allFactoriesOnScreen"); },
    allIdleFactoriesOnScreen: function () { engine.call("select.allIdleFactoriesOnScreen"); }
    These are the available calls to select fabricators and factories. As you can see, there are three for fabricators and four for factories. The "idleFabber" command should actually be named "allIdleFabbersOnScreen" and a new command for "allIdleFabbers" should be added.

Share This Page