Navigation

    forum

    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    1. Home
    2. Estecka
    3. Topics
    • Flag Profile
    • block_user
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Groups
    • Blog

    Topics created by Estecka

    • Pulling multiple branches from github
      Feature Requests • • Estecka

      1
      1
      Posts
      4125
      Views

      No one has replied

    • Unsolved Special caracters aren't properly pulled from github.
      Technical Issues and Bugs • • Estecka

      12
      12
      Posts
      14397
      Views

      @mrfaul yeah, my thing is i hate digging through the start menu. so anything that can be done in the run prompt will be done. and yeah, keyboard shortcuts are clutch. why move your right hand to the mouse if you dont have to. it's just less efficient...
    • Solved Syncing ingame script with github
      Technical Issues and Bugs • • Estecka

      3
      3
      Posts
      5599
      Views

      I'll take it as a "this is how it works" and make a feature request of it instead. I'll mark the issue as solved since I got something working.
    • Solved `<` followed by alphabetical caracters don't show up in the console.
      Technical Issues and Bugs • • Estecka

      4
      4
      Posts
      4440
      Views

      the client is just a browser, and your message is simply attached without being processed by the server. you can do everything if you want .. including executing javascript by using script tags.
    • Solved Why are some error messages unhelpful ?
      Help • • Estecka

      9
      9
      Posts
      10718
      Views

      Well you are free to modify any aspects of the engine like lowering the constants so you build faster etc. Also there are different tools as mods available, but you have to be aware that those are cmd line based.
    • Anchoring RoomVisuals to creeps.
      Feature Requests • • Estecka

      5
      5
      Posts
      6103
      Views

      I don't expect to get this any time soon nor need it urgently; if I can get this into the devs' backlog it will be good enough. I don't have a very extensive custom UI... yet. RoomVisuals helps so much with understanding what's going on at a glance.
    • Resource icons as RoomVisuals
      General Discussion • • Estecka

      4
      4
      Posts
      6782
      Views

      If only we had some kind of MapVisuals so we could use this in a map overlay!
    • Superfluous ConstructionSites - Relocating structures
      Feature Requests • • Estecka

      33
      33
      Posts
      56110
      Views

      Since we pretty much hijacked this I created a separated topic for it: Refining the game start: A "claim room" button instead of a forced "place spawn":
    • Solved Can't place containers nearby exits
      Technical Issues and Bugs • • Estecka

      2
      2
      Posts
      2948
      Views

      https://screeps.com/forum/topic/2437/ptr-changelog-2018-11-01-creep-pull/2 Under other unrelated changes, currently pending / on PTR
    • Solved Safely extending Array.prototype
      Help • • Estecka

      2
      2
      Posts
      5088
      Views

      You can use Object.defineProperty with {enumerable: false}. > Array.prototype.foo = function() {return 'bar';} > for (let i in ['a', 'b', 'c']) console.log(i); 0 1 2 foo > Object.defineProperty(Array.prototype, 'foo', {value: function() {return 'bar';}, enumerable: false}) > for (let i in ['a', 'b', 'c']) console.log(i); 0 1 2
    • Unsolved Changes to code made shortly after saving it are discarded
      Technical Issues and Bugs • • Estecka

      17
      17
      Posts
      16661
      Views

      For fast iterations just use a local server, you shouldn't have those problems then. It is far better anyway to only push "stable" versions to the server anyway.
    • Solved Invader spawning on top of wall
      Technical Issues and Bugs • • Estecka

      3
      3
      Posts
      4093
      Views

      The fix is deployed, this shouldn't happen again.
    • Return ERR_NO_PATH in more situations
      Feature Requests • • Estecka

      2
      2
      Posts
      3277
      Views

      Checking obstacles for players would be incorrect. There are a few cases when such check is excessive, like a creep stepping over a structure which will be destroyed at the next tick. These cases are more or less rare but still, it's breaking change. As for your other questions, well, if you're asking this then you're probably experienced enough to migrate to PathFinder.search which provides lots of necessary information (sooner or later, this happens to all of us).
    • Lodash 4
      Feature Requests • • Estecka

      4
      4
      Posts
      4979
      Views

      That's correct, upgrading lodash may break someone's code.
    • Solved Tunnel roads have no HP in custom mode
      Technical Issues and Bugs • • Estecka

      8
      8
      Posts
      7621
      Views

      It is fixed for me now.