23.05.2020, 14:33
Quote:
Looks like process is not killed and still running, hence still using given port and when you try to start new process, that port is already taken by previous instance.
|
I read on goo gle that I have to open the port on my machine..
"Open a TCP port on your firewall (9014 is the default one)."
My server use 7777 port..
PHP Code:
public OnGameModeExit()
{
if(is_socket_valid(SocketID))
{
socket_stop_listen(SocketID);
socket_destroy(SocketID);
}
return 1;
}