Navigation

    forum

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

    Topics created by Fikal

    • Building structures
      Help • • Fikal

      4
      4
      Posts
      5134
      Views

      Another way to save CPU usage is to store the values of the FIND functions into a temporary module. I went from 60~70% CPU usage to about 20~30% with this code: ``` var roomData = {}; Room.prototype.xFind = function(type, filter, sorter) { if(roomData[type] == undefined) _roomData[type] = this.find(type); var back = _roomData[type]; if(filter != undefined) { back = _.filter(back, filter); } if(sorter != undefined) { back.sort(sorter); } return back; } ```
    • About self hosted Custom map potential feature
      Help • • Fikal

      1
      1
      Posts
      2931
      Views

      No one has replied

    • Be able to set controller level in Custom mode
      Feature Requests • • Fikal

      5
      5
      Posts
      6143
      Views

      @Artem that's perfect! Sorry I must have missed those, but that is exactly what I was looking for. Cheers!
    • Memory no longer being saved with created Creep!
      Technical Issues and Bugs • • Fikal

      6
      6
      Posts
      8448
      Views

      Artem, You are correct! I discovered this an hour or so after I moved some things around. Thanks to everyone for checking and offering suggestions.
    • Some cool features
      Feature Requests • • Fikal

      1
      1
      Posts
      3034
      Views

      No one has replied