I really can't get it

Options
lumius
edited July 2012 in Photon Server
i see every tutorial in sdk

but i cant still get how to make room(or world).

i want make myapplication from scratch

and problem is event function returns only to who send request.

it's because users are not in same room but i don't know how to make room and puts user into it.

please help me

Comments

  • Tobias
    Options
    This sounds like you have trouble on the client side but you post in the server forum?
    Please try to ask concrete questions in the forums that are for them. This helps us help you.

    Any player can join existing rooms or create new ones. The Photon Cloud (and LoadBalancing in the Server SDK) have a lobby to list all rooms that are open.
    You join any room by name.

    This should help:
    http://doc.exitgames.com/photon-cloud/O ... 0Tutorials
  • lumius
    Options
    Tobias wrote:
    This sounds like you have trouble on the client side but you post in the server forum?
    Please try to ask concrete questions in the forums that are for them. This helps us help you.

    Any player can join existing rooms or create new ones. The Photon Cloud (and LoadBalancing in the Server SDK) have a lobby to list all rooms that are open.
    You join any room by name.

    This should help:
    http://doc.exitgames.com/photon-cloud/O ... 0Tutorials

    why i post this in server forum?

    because i want create just one room that starts with server and every user automatically join that room when they connect
  • Tobias
    Options
    Photon does not work this way. Clients create the rooms on the fly as needed.
    You can make all clients join the same room, if you wanted to.
    This is not scalable if more and more players join, cause every event one sends goes to all the other players in the room.
  • lumius
    Options
    thanks.

    now i can find why there is no guide or tutorial about making room from server.