Navigation

    forum

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

    Silentium_noxe

    @Silentium_noxe

    6
    Posts
    1504
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online
    Email silentium.noxe@gmail.com

    Silentium_noxe Follow

    Posts made by Silentium_noxe

    • call actions of creep with string ID

      Hello I want to suggest the next idea - in functions like creep.moveTo(target), creep.harvest(target), creep.build(target) etc. make target also string with id.

      It's should look like this:

      //want this
      creep.harvest("5bbcb68ad867df5e54207957")
      //instead of
      const source = Game.getObjectById("5bbcb68ad867df5e54207957");
      creep.harvest(source);
      
      posted in General Discussion
      Silentium_noxe
    • RE: How can I know which rampart/wall has the lowest amount of hitpoints?
      let min = Number.MAX_SAFE_INTEGER;
      let target;
      Game.rooms.ROOM_NAME.find(FIND_STRUCTURES).forEach((s) => {
          if(s.structureType == STRUCTURE_WALL || s.structureType == STRUCTURE_RAMPART){
              if(s.hits < min){
                   min = s.hits;
                   target = s;
              }
          }
      });
      
      posted in Help
      Silentium_noxe
    • Can't receive "verify email" message

      Hello, yesterday my friend tried to register on the site and he can't receive a letter from you for verify his email. Name: Froog email: avitalik018@gmail.com

      posted in Technical Issues and Bugs
      Silentium_noxe
    • RE: Error This creep doesn't exist yet with Store

      So, it means that we can't use logic like this, yes?

      posted in Technical Issues and Bugs
      Silentium_noxe
    • RE: Error This creep doesn't exist yet with Store

      Hello, receive an error.

      0_1595427944173_05cd1131-6c0d-4fa8-b0f0-b73c9f331ed1-image.png

      The code:

      0_1595428018071_525b2e0d-d039-496e-ab4e-12fcc0e66bc5-image.png

      I have defined many methods but game don't like only this.

      posted in Technical Issues and Bugs
      Silentium_noxe
    • Can't log in to screeps via Atom code editor

      Re: Screeps IDE alpha release

      Hello. I'm trying to use Atom code editor, I've installed package, dependency for him, relaunch Atom, and got the welcome page. I start to log in for generating auth token but my credentials look like an invalid but I checked him via the website and all success. I made eight tries and still can't log in.

      posted in Technical Issues and Bugs
      Silentium_noxe