Hello friends. Good morning everyone!
I managed to create my dedicated server, which carries only the INITIAL LEVEL game, and this way all the clients connect to the level (IGNIA) that was the level that the server opened
Sample on server
...
if(session_open("*ignia"))
{
//on_server = server_event;
while(dplay_status != 8){wait(1);}
level_load("Beta_room.wmb");
wait(3);
//reset(camera,SHOW);
...
}
Now I have a huge problem!
?How would it be possible for my server manage more than one level? if he can open only one level at a time?
Should I run a server for each level that I want that clients can connect?