Page 1 of 1

New console - Can't see how you activate it

Posted: Mon 03.03.2008, 13:13
by PowerWyrm
The console (mangconsole.exe) has been recently replaced by some text protocole. The question is... how do I send console commands without the exe?

Posted: Tue 04.03.2008, 09:34
by Jug
The server listens on the standard console port with a straightforward text based protocol, like SMTP or NNTP for example. You can connect to it in many different ways, just open a socket connection to the port. Perhaps the most straightforward manual way is with netcat:

Code: Select all

nc localhost 18347
Then enter the console password.

- Jug

Posted: Tue 04.03.2008, 13:03
by PowerWyrm
I tried to connect using Telnet with "open localhost 18347"... I correctly obtain the connection (I see "Connected" appear in the console), but as soon as I type something I get a failure message from the Packet_scanf() routine (failure = 3).

Posted: Tue 04.03.2008, 16:01
by Jug
Try netcat instead, telnet sends some other control codes which confuse the (fragile) console interface.

- Jug

Posted: Tue 04.03.2008, 21:47
by PowerWyrm
Ok it works thanks...