Navigation

    forum

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

    Esryok

    @Esryok

    9
    Posts
    3202
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Esryok Follow

    Posts made by Esryok

    • RE: Map stats no longer work

      Awesome, thanks for the fix!

      posted in Technical Issues and Bugs
      Esryok
    • Map stats no longer work

      Seems like stat collection is failing now that shards are live: the leaderboard is now static and the backend API shows that stats haven't been accumulating for the past 12 hours.

      The first empty bucket (at least for interval 180) starts at 2017-08-03T18:00:00.000Z.

      posted in Technical Issues and Bugs
      Esryok
    • RE: World Shards Launched!

      The experimental APIs are a bit bugged now. 'nukes' straight up doesn't work anymore and 'pvp' seems to use the 'start' query parameter for both shards, which necessitates inefficient queries as one shard clock is in the millions while the other is just now reaching digit #5.

      posted in News & Announcements
      Esryok
    • RE: [Discussion] The case against overpowered power creeps

      @tedivm: I'm not so sure. Any player who has previously farmed power will be at least GCL4, and even as things stand I'll almost always put my credits on the highest GCL player to dominate their novice zone. Denying them the ability to experiment with power creeps won't change this, but it will make them that much less prepared to engage with the rest of the world.

      posted in General Discussion
      Esryok
    • RE: PTR Changelog 2017-02-17

      Also for backups/testing! I like to periodically grab a snapshot of my memory & room objects for porting over to a private test server.

      posted in News & Announcements
      Esryok
    • RE: PTR Changelog 2017-02-01

      To track which rooms your clients are looking at...

      Client side

      https://github.com/Esryok/screeps-browser-ext/blob/master/visible-room-tracker.user.js

      Server side

      https://github.com/Esryok/screeps-browser-ext/blob/master/agent-modules/VisibleRoomTracker.js

      posted in News & Announcements
      Esryok
    • RE: Screeps World War 1

      World map as of 11/16/16, the participants highlighted: Culture (light blue) + CoPS (yellow) + SWA (violet) vs SUN (green) + TK (dark blue)

       

      11 days later, when the cease fire took hold:

      posted in General Discussion
      Esryok
    • Allow access to node's Buffer class

      I'm building a heap on top of the RawMemory global to improve script perf, but JavaScript doesn't have great support for converting between byte arrays and strings. The least-bad method I've found is using String.fromCharCode.apply, which starts hitting stack overflows around 115 KB.

      Can we get access to node's Buffer class in the player scripts?

      posted in Feature Requests
      Esryok
    • UI bug: Empty popup "Do you like Screeps?"

      I navigated to the world map and saw this popup:

      I'm running Chrome Version 51.0.2704.103 m, and since I happened to have fiddler running at the time...

      Request:

      GET https://screeps.com/a/components/game/tutorial/tipFacebookLike.html?bust=1467188499549 HTTP/1.1
      Host: screeps.com
      Connection: keep-alive
      Accept: application/json, text/plain, */*
      X-Token: nottelling
      X-Username: stillnope
      User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36
      Referer: https://screeps.com/a/
      Accept-Encoding: gzip, deflate, sdch, br
      Accept-Language: en-US,en;q=0.8
      Cookie: _ga=GA1.2.592940965.1466723584; _gat=1; mp_647fa4fef822c1d4e9fa7b25812599cf_mixpanel=%7B%22distinct_id%22%3A%20%221557f89c2c51c8-0b34a7fd0696f-3f65450b-1fa400-1557f89c2c6451%22%2C%22%24search_engine%22%3A%20%22google%22%2C%22%24initial_referrer%22%3A%20%22https%3A%2F%2Fwww.google.com%2F%22%2C%22%24initial_referring_domain%22%3A%20%22www.google.com%22%2C%22__alias%22%3A%20%22somebody%40gmail.com%22%2C%22email%22%3A%20%22somebody%40gmail.com%22%2C%22userId%22%3A%20%22576b8f8aa5b6db107d48fdbd%22%2C%22__mps%22%3A%20%7B%7D%2C%22__mpso%22%3A%20%7B%7D%2C%22__mpa%22%3A%20%7B%7D%2C%22__mpu%22%3A%20%7B%7D%2C%22__mpap%22%3A%20%5B%5D%7D; mp_mixpanel__c=0; mp_mixpanel__c3=0; mp_mixpanel__c4=0; mp_mixpanel__c5=0

      Response:

      HTTP/1.1 200 OK
      Server: nginx/1.9.9
      Date: Thu, 30 Jun 2016 23:20:05 GMT
      Content-Type: text/html
      Content-Length: 402
      Last-Modified: Wed, 29 Jun 2016 08:23:39 GMT
      Connection: keep-alive
      ETag: "5773858b-103"
      Expires: Thu, 31 Dec 2037 23:55:55 GMT
      Cache-Control: max-age=315360000
      Pragma: public
      Cache-Control: public, must-revalidate, proxy-revalidate
      Access-Control-Allow-Credentials: true
      Access-Control-Allow-Headers: Content-Type,Accept,X-Username,X-Token,X-Password
      Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE

      <section app-tutorial-content>
      <h4>Do you like Screeps?</h4>
      <div app-nw-external-link app:facebook-parse class='fb-page' data-adapt-container-width='false' data-colorscheme='dark' data-height='180' data-hide-cover='true' data-hide-cta='true' data-href='https://www.facebook.com/ScreepsGame' data-show-facepile='true' data-show-posts='false' data-small-header='true' data-width='300'></div>
      </section>

      posted in Technical Issues and Bugs
      Esryok