Unable to create an ENet Server.

Ask for help regarding any technical issue or report any bug or OS independent issues.
User avatar
o11c
Grand Knight
Grand Knight
Posts: 2262
Joined: 20 Feb 2011, 21:09
Location: ^ ^

Re: Unable to create an ENet Server.

Post by o11c »

visaboy wrote:Was was support removed from the project to begin with?
Is it no longer being developed?
The reason is that ManaServ is not a stable target, so it was disabled for the stable client release.
Former programmer for the TMWA server.
User avatar
visaboy
Peon
Peon
Posts: 29
Joined: 09 Jan 2011, 06:19

Re: Unable to create an ENet Server.

Post by visaboy »

o11c wrote:
visaboy wrote:Was was support removed from the project to begin with?
Is it no longer being developed?
The reason is that ManaServ is not a stable target, so it was disabled for the stable client release.
Alright, so to clear things up.

What is the project currently in active development? tmw or mana?

It makes no sense to disable manaserv if that's the active project.
“If it moves, fondle it - except porcupines, ball lightning, and policemen” :)
Ablu
Manasource
Manasource
Posts: 288
Joined: 23 Jul 2011, 08:31
Location: Germany

Re: Unable to create an ENet Server.

Post by Ablu »

visaboy wrote:
o11c wrote:
visaboy wrote:Was was support removed from the project to begin with?
Is it no longer being developed?
The reason is that ManaServ is not a stable target, so it was disabled for the stable client release.
Alright, so to clear things up.

What is the project currently in active development? tmw or mana?

It makes no sense to disable manaserv if that's the active project.
Well ManaServ has currently only one active gameserver. This is invertika. But invertika uses an outdated server so the current client is incompatible with it. Currently there were heavy modifications on manaserv which made it unsusable (currently fight and skill system is a bit broken). So the idea was to prevent confusion about not working ManaServ. But i guess in 0.7 it will be probably possible to enable ManaServ support again.

Well back to your question:

ManaServ is still in active development but is (as i said) currently not really usuable.
TMW uses eAthena which is stable since while but does not have all the features desired. Best ask o11c about development of eAthena.

Best regards
Ablu
Ablu
Manasource
Manasource
Posts: 288
Joined: 23 Jul 2011, 08:31
Location: Germany

Re: Unable to create an ENet Server.

Post by Ablu »

Just to clear some things up:
Bertrams example has an small issue:
He binds the game and chat server to internal ips:

Code: Select all

<option name="net_chatHost" value="192.168.1.10"/>
<option name="net_gameHost" value="192.168.1.10"/>
This won't work for public servers because this ip will be sent to the client and the client will try to connect to that ip.
Well of course that wont work if the client is not in the same network like the server. So you would need to set it to your public ip. But when you are behind a router you do not know this ip and your machine cannot bind anything to it. This issue is fixed now:
You can now define two further configuration values:

Code: Select all

<option name="net_publicChatHost" value="mydomain.org"/>
<option name="net_publicGameHost" value="mydomain.org"/>
This is now the ip or domain that is sent to the client. When this option is not set the net_chatHost or net_gameHost will be sent.

So you need to put there your public ip of your router (or domain) and configure your router to do the port forwarding to the right machine in the local network.

Best regards,
Ablu
Post Reply