@Steeffen :
the script still does not work, still the same problem
@Kremsy
I try to modify the file mpaseco.php it doesn't work too
Code: Select all
case 'ManiaPlanet.EndRound': // none new
$this->endRound();
break;
case 'ManiaPlanet.StatusChanged': // [0]=StatusCode, [1]=StateName
// update status changes
$this->prevstatus = $this->currstatus;
$this->currstatus = $call[1][0];
// check WarmUp state
if ($this->currstatus == 3 || $this->currstatus == 5) { */
$this->client->query('GetWarmUp');
$this->warmup_phase = $this->client->getResponse();
}
if ($this->currstatus == 4) { // Running - Play
$this->runningPlay();
}
$this->releaseEvent('onStatusChangeTo' . $this->currstatus, $call[1]);
break;
/* case 'ManiaPlanet.BeginMap': // [0]=Challenge
$this->beginMap($call[1]);
break;
case 'ManiaPlanet.EndMap': // [0]=Challenge
if($this->endmapvar==0)
$this->endMap($call[1]);
break;
case 'ManiaPlanet.PlayerManialinkPageAnswer': // [0]=PlayerUid, [1]=Login, [2]=Answer, [3]=Entries
$this->releaseEvent('onPlayerManialinkPageAnswer', $call[1]);
break;
case 'ManiaPlanet.BillUpdated': // [0]=BillId, [1]=State, [2]=StateName, [3]=TransactionId
$this->releaseEvent('onBillUpdated', $call[1]); */
break;
sorry for the inconvenience