Navigation

    forum

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

    Pascow

    @Pascow

    11
    Posts
    1486
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Pascow Follow

    Posts made by Pascow

    • RE: Lost memory

      Nope, I do not use RawMemory.

      posted in Technical Issues and Bugs
      Pascow
    • RE: Lost memory

      @retired yep, that is contents from my memory.

      posted in Technical Issues and Bugs
      Pascow
    • RE: Lost memory

      Rooms found in the memory data belong to Rumatah.

      posted in Technical Issues and Bugs
      Pascow
    • RE: Lost memory

      Just checked my memory too. I can clearly tell the memory contents are not mine. Does this look familiar to anyone?



      posted in Technical Issues and Bugs
      Pascow
    • Lost memory

      It seems I have lost the contents of my memory during the last few days. This of course have caused a havoc since I store things such as population settings in memory.

      So moral of the story. Do not trust memory actually retains it's contents. Or atleast login every day to see if your Screeps are still running correctly.

      posted in Technical Issues and Bugs
      Pascow
    • RE: creep.say() method takes const CPU

      I use say() for debugging. Today I started to constantly hit CPU limits even though code did not change for a while. Maybe this is was changed today?

      posted in Technical Issues and Bugs
      Pascow
    • RE: HOW do i tranfer energy from a creep to all extensions

      You need to find structures which need energy. Something like the code below.

          structures = creep.room.find(FIND_MY_STRUCTURES, {
              filter: function (object) {
                  return object.energy < object.energyCapacity;;
              }
          });
      
          if (ERR_NOT_IN_RANGE === creep.transferEnergy(structures[0])) {
              creep.moveTo(structures[0]);
          }
      
      posted in Help
      Pascow
    • RE: Creeps disappear

      Each creep lives for 1500 ticks.

      http://support.screeps.com/hc/en-us/articles/203022092-Spawning-creeps

      posted in Help
      Pascow
    • RE: Game frozen

      That seems to fix the problem. Thanks!

      posted in Technical Issues and Bugs
      Pascow
    • RE: Game frozen

      I also have the following notification send to my email at 5:25 this morning.

      "Script execution has been terminated"

      posted in Technical Issues and Bugs
      Pascow