Hi @dpastorini good luck with your project! do you have a link to live demo?
3
Reputation
16
Posts
2326
Profile views
0
Followers
0
Following
Posts made by AnubisCode
RE: MMORPG - V1.2.6
posted in Showcase •
RE: client dont have session id when join with room id
posted in Questions & Help •
show what you see in logs:
onJoin (client, options) {
console.log(client.id, client.sessionId);
}
RE: How to connect colyseus monitor In java script
posted in Questions & Help •
no sure what you mean under "connect in java script"
but to see monitor you need open in your browser: http://localhost:3553/colyseus/
RE: EntityMap iterator
posted in Questions & Help •
@plyoung updated the code, yeah missed one thing.
RE: gunfight.io
posted in Showcase •
@umen we have 3 servers now (each droplet of DigitanOcean 1 vCPUs 1GB / 25GB Disk), each server can keep about 500-600 users, but it's depends on logic of your server.
RE: EntityMap iterator
posted in Questions & Help •
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();
}
RE: gunfight.io
posted in Showcase •
@crizzooo hi, thanks! for cliens side: PhaserJS. the art is made by my brother. :)
@Tyrus-Shan DigitanOcean, use my referral link to get free $10.
RE: Colyseus Client for Unreal Engine
posted in Links & Resources •
hi, for now that's no possible to do. here on github, you can follow the discussion.