Navigation

    forum

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

    AdaIsDead

    @AdaIsDead

    2
    Posts
    919
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    AdaIsDead Follow

    Posts made by AdaIsDead

    • RE: Problems with finding containers

      You can'y store live objects in Memory, store the id of game objects.

      something like:

       

      var newstorePlaces = new Array();

       

      for (var i in storePlaces) {

      var sp = storePlaces[i];

      newstorePlaces.push(sp.id);

      }

       

      creep.memory.places = newstorePlaces;

       

      and then Game.getObjectById() to get the objects back again.

       

      posted in Help
      AdaIsDead
    • CCC Congress?

      Hi,

       

      Are any screeps players at 33c3? and if so do you want to meetup and complain about how much forgetting to check for undefined is annoying you?

       

      (CCC Congress is a large European hacker conference thing: https://events.ccc.de/congress/2016/wiki/Static:Main_Page )

       

      posted in General Discussion
      AdaIsDead