8476
Modification Help / Re: Unknown command onClientEnterGame
« on: July 18, 2012, 04:19:51 PM »electrk, return the parent: return parent::onClientEnterGame(%this);
but be sure to start your tick before they enter.Code: [Select]package StartTick {
function GameConnection::onClientEnterGame(%this)
{
StartTick(%this);
return parent::onClientEnterGame(%this);
}
};
activatePackage(StartTick);
This worked, thanks!