In this version the changelog is not that big, but changes are important
ManiaHome
The ManiaHome Client is now compatible with the last version of ManiaHome. The method signature has change so, update your plugin before using it.
chat commange
A new feature has been set in the chat command interpreter.
if you register a command with the number of parameter equal to -1, you can send as much argument as you want to the command.
Here is a code sample to use it:
Code: Select all
function onLoad()
{
$this->registerChatCommand('t', 'test', -1, true);
}
function test()
{
$args = func_get_args();
//Do what you want here!!!
}
You can download this version here: http://code.google.com/p/manialive/downloads/list
The standard plugins have been also updated, so think to download them too
