Navigation

    forum

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

    PlanC

    @PlanC

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

    PlanC Follow

    Posts made by PlanC

    • RE: call actions of creep with string ID

      @silentium_noxe
      In some specific situation, like this:

      creep.harvest("5bbcb68ad867df5e54207957");
      // ... 98 lines
      creep.harvest("5bbcb68ad867df5e54207957");
      // "5bbcb68" been queried 100 times
      
      const source = Game.getObjectById("5bbcb68ad867df5e54207957");
      creep.harvest(source);
      // ... 98 lines
      creep.harvest(source);
      // "5bbcb68" been queried 1 time, saved in memory
      

      100 times more efficient in specific situation.

      posted in General Discussion
      PlanC
    • RE: console.clear()?

      https://screeps.com/forum/topic/1789/console-clear/6#
      dude...

      posted in Feature Requests
      PlanC