Navigation

    forum

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

    Posts made by Dissi

    • RE: Decorations update

      Awesome! That's a good change. Would it be possible to add a counter of how many items are visible? I can do math but it gets quite old quite quickly:

      0_1593198719326_f06bfef6-5e86-4367-8282-056bd6048f34-image.png

      Something like this

      posted in News & Announcements
      Dissi
    • RE: Github integration isn't working

      Pleas read this:
      https://status.github.com/messages

      It was all kinda broken

      posted in Technical Issues and Bugs
      Dissi
    • RE: Our new full-time team members

      I loved working for your guys! I will still be around to help out wherever I can.
      I'm very happy that the CM role is filled in by someone as capable as @o4kapuk. He's the perfect candidate.

      Thanks for the last 2 years! It's been amazing.

      posted in News & Announcements
      Dissi
    • RE: PTR Changelog 2018-08-20: tunnels

      Amazing change. Nice work!

      posted in News & Announcements
      Dissi
    • RE: Help wanted: Source Keepers overhaul

      The code is still needed @deft-code 😄 the reward is still up for grabs.

      posted in General Discussion
      Dissi
    • RE: Isolated-VM not executing code during slowdown?

      @Periosa There are currently some issues related to isolated-vm.
      We are actively working on fixing this issue.

      You can join our slack to get up to date messages about the current state (you can join the #ivm channel to see details of what's happening).
      Please beware that the isolated-vm feature is still in the experimental fase and might cause issues like you described earlier.

      You can also subscribe to this topic to receive updates: https://screeps.com/forum/topic/2133/changelog-2018-03-05/14

      posted in Technical Issues and Bugs
      Dissi
    • RE: Building a rampart on top of an invader prevents killing it

      @hyramgraff That's because rangedMassAttack will not attack your own ramparts.
      A rangedAttack on the other hand is a directed attack at something in a specific location.

      rangedMassAttack will also not damage any of your own buildings while a directed rangedAttack will do that.

      posted in Technical Issues and Bugs
      Dissi
    • RE: Despawning for dead players

      Don't forget that friendlies can help resurrect a "dead" player.
      They can help by rebuilding the spawn.

      posted in Feature Requests
      Dissi
    • RE: 1 Flag exists in 2 places.

      I've seen this kind of issue before but thought it was my code that was causing it.
      I'd like to help you narrow it down to the events leading up to this bug.

      • Did you create a flag and lose vision on the same tick?

      I've had issues with creating flags myself ( Linky ) and I think they might be related

      posted in Technical Issues and Bugs
      Dissi
    • RE: PTR Changelog 2018-02-28: lab reaction time

      I really like this change.
      My old empire used to be able to create defending/attacking boosts to sustain attacks/defenses without buildup of supplies. The entire empire could crank out more X-tiered boosts in single tick than it could consume. With this change I expect it to be more viable to start attacking people again.

      The defender is more likely to run out of boosts to defend properly, and in the same way the attacker will need a lot of stored/prepared boosts for attacking. A counterattack after the attacker runs out of boosts is also quite a good strategy now.

      In short, I really like the inability to quickly rebuild boost surplus.

      Ps: As for the change of the upgradeController boost, I think it could have stayed the same as it, in my opinion, does not directly impact attacking/defending parties. The same is true for harvest/carry boosts.

      posted in News & Announcements
      Dissi
    • RE: PTR Changelog 2018-02-28: lab reaction time

      The changes seem excessive in some cases ( 450 ticks / 40 ticks ).

      My only question is why is this change needed?

      posted in News & Announcements
      Dissi
    • RE: Draft: room event log

      @tigga said in Draft: room event log:

      There's no EVENT_MOVE in the example, is that also going to be an event

      What about a EVENT_COLLISION @artch? This way when 2 creeps move to one location we can easily determine which one was the loser.

      posted in General Discussion
      Dissi
    • RE: Draft: room event log

      @stevetrov said in Draft: room event log:

      Sounds like the EVENT_CREEP_DESTROYED functionality is covered by tombstones, so EVENT_STRUCTURE_DESTROYED should suffice and doesn't reveal any user specific information

      Which reminds me, It would be nice to have a pile of rubble for some ticks when a building is destroyed. This way you'd have tombstones for structures.

      EVENT_STRUCTURE_DESTROYED seems overkill.
      I think the event EVENT_ATTACK would cover most of the issues here. Maybe add destroyed: true|false could be added so you won't do a Game.getObjectById(data.targetId) and get null back.

      posted in General Discussion
      Dissi
    • RE: Screeps Discord?

      I don't prefer either one.
      Most people's workplaces use slack in the office which was one of the big reasons we switched.

      That being said, Discord offers more diversity in managing permissions which in turn will make it more easy to manage. We can even link IRC to connect to discord with some setup to make it "work safe".

      If we go through with the transition to Discord there will obviously be a Screeps Discord managed by the Screeps team.

      posted in General Discussion
      Dissi
    • RE: Help wanted: Source Keepers overhaul

      @artch said in Help wanted: Source Keepers overhaul:

      leave their movement by plain land as usual, but without dynamic path finding. I.e. the path is calculated once and then reused, and if the keeper is blocked, it will stuck until it kills the blocking creep or die

      This makes the logic a lot easier to implement. I also thinks this looks a lot like the current implementation.

      posted in General Discussion
      Dissi
    • RE: Help wanted: Source Keepers overhaul

      @artch said in Help wanted: Source Keepers overhaul:

      What do you mean blocked? Currently they can redo pathfinding if they are blocked, i.e. it's dynamic (with reusePath:50), isn't it?

      Yes, basically it means they'll probably be stuck for 50 ticks, and recalculate the path.

      @artch said in Help wanted: Source Keepers overhaul:

      Every wall tile should have at least one adjacent plain tile (in order for the creep to be exposed to player melee attackers at any given moment).

      If we want to keep it as simple as possible it might be better to only do a getDirectionTo and move that way. And yes, if we want to have the move over the wall requirement it wil require additional logic and getDirectionTo will not suffice.

      posted in General Discussion
      Dissi
    • RE: Help wanted: Source Keepers overhaul

      A simple getDirectionTo() could eliminate the need of path finding.
      SK's currently are blocked by player creeps anyway, they will hammer on the thing that's in the way.

      posted in General Discussion
      Dissi
    • RE: How is constant CPU cost applied?

      @mrfaul said in How is constant CPU cost applied?:

      So that means:

      creep.move(TOP) // blocked ->neglected cost <<<<<< this is consuming 0.2 anyway as move is returning OK
      creep.move(RIGHT) // possible -> 0.2 cost
      // More code something happens
      creep.move(DOWN) // possible -> 0.2 cost again
      

      Right? or did I misunderstood something?

      The result of this code is 0.6 CPU used. if you get OK back from the API you will have consumed the CPU.

      EDIT:
      I'm wrong. Looked at the code and it's only 0.2: https://github.com/screeps/driver/blob/master/lib/runtime/runtime.js#L148

      posted in Help
      Dissi
    • RE: Add a checkbox to account settings to suppress hard and soft reset error messages

      I'd want this 😄

      posted in Feature Requests
      Dissi
    • What did you find annoying/hard when you started out with this game?

      I'll kick off the topic! I had quite a few things that I found difficult to grasp 2 years ago, but here's a few to get started;

      • Managing what to spawn, how many and what size
      • Dealing with room edges, the flickering between 2 rooms

      What did you guys face early on? What was the most challenging for you?
      Was it waiting for energy, or was it the invaders?

      Let me know 😄

      posted in General Discussion
      Dissi