Page 1 of 1

Need current ManiaLive developer's documentation

Posted: 25 Dec 2012, 04:51
by TatharNuar
I'd like to develop a plugin suite for ManiaLive, but I'm a novice at PHP and I've never made a functional plugin before. Reaby was helping me for a while, but we lost touch and I've been too busy with personal matters for the past three months to keep up with ManiaLive's development on my own. Since the developer's documentation on the Google Code site hasn't been updated in close to a year, can I get something more current? Thanks in advance.

Re: Need current ManiaLive developer's documentation

Posted: 25 Dec 2012, 10:33
by TatharNuar
In other news, I'm working on a basic "admin commands" plugin so I can control my testing server and shut it down as needed. I've managed to create a command to shut down the server, but

Code: Select all

$this->connection->stopServer();
throws an exception in the process. How do I gracefully shut down a server running ManiaLive?

Re: Need current ManiaLive developer's documentation

Posted: 19 Jan 2013, 19:19
by MuNgLo
For pure server commands you should check the connection.php inside the dedicatedapi folder. Its those u get with $this->connection. Those can solve most things for you.