Navigation

    forum

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

    Razsk

    @Razsk

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

    Razsk Follow

    Posts made by Razsk

    • RE: Efficient code for entering a code

      Thanks for the code.

      I also tried this:

      if (this.pos.x == 49) {this.move(LEFT);}
      if (this.pos.x == 0 ) {this.move(RIGHT);}
      if (this.pos.y == 49) {this.move(TOP);}
      if (this.pos.y == 0 ) {this.move(BOTTOM);}

      And it also seems to work.

      My problem was made worse when I skipped all creeps with fatigue > 0. But creeps with 0 < fatigue < 1 seem to be able to move so now I only skip creeps with fatigue >=1.

      posted in Help
      Razsk
    • Efficient code for entering a code

      My creeps blink between rooms at random when trying to enter a room.

      Do any of you have a great code snippet that makes a creep enter a room efficiently?

      Thanks.

      posted in Help
      Razsk