Navigation

    Colyseus
    • Login
    • Search
    • Recent
    • Tags
    • Users
    1. Home
    2. AnubisCode
    3. Best
    • Profile
    • More
      • Continue chat with AnubisCode
      • Flag Profile
      • Following
      • Followers
      • Topics
      • Posts
      • Best
      • Groups

    Best posts made by AnubisCode

    gunfight.io

    Hi Everyone,

    GunFight.io - original HTML5 multiplayer game. Select your team Counter-terrorists or Terrorists and have fun!

    ^__^

    Play

    Any suggestion and feedback are welcome.

    posted in Showcase •
    RE: EntityMap iterator
        players: EntityMap<Player> = {};
    
        ........
        //add players something like this 
        const player = new Player(client.sessionId);
        this.players[client.sessionId] = player; 
    
        ........
    
        for (let sessionId in this.players) {
               this.players[sessionId].update();
        }
    posted in Questions & Help •
    RE: How to connect colyseus monitor In java script

    no sure what you mean under "connect in java script"
    but to see monitor you need open in your browser: http://localhost:3553/colyseus/

    posted in Questions & Help •