Author Topic: Scheduling a Parent  (Read 1016 times)

Can you schedule the call of a parent? I get syntax with this:
Code: [Select]
package EnterGameOverWrite
{
   function GameConnection::onClientEnterGame(%this)
   {
      schedule(1000,Parent::onClientEnterGame,%this);
   }
};

If possible, how do I schedule the calling of a parent?

I'm going to guess it's something like (assuming it's possible)
parent.schedule
or
this.schedule

But that's a shot in the dark(very literally considering how late it is here).

I'm going to guess it's something like (assuming it's possible)
parent.schedule
or
this.schedule

But that's a shot in the dark(very literally considering how late it is here).
Neither of those worked. I don't think it's possible, but any other feedback would be appreciated.

Can you schedule the call of a parent? I get syntax with this:
Code: [Select]
package EnterGameOverWrite
{
   function GameConnection::onClientEnterGame(%this)
   {
      schedule(1000,0,eval,"Parent::onClientEnterGame(" @ %this @ ");");
   }
};

If possible, how do I schedule the calling of a parent?

« Last Edit: March 29, 2010, 10:08:31 PM by lilboarder32 »