Author Topic: Are there any GameConnections left.  (Read 534 times)

Well, Most of the GameConnections I try to use don't seem to work because Badspot blocked them or something along those lines.

Tried:
  • Createplayer
  • ConnectionRequest + Schedule
  • ClientEnterGame

AutoAdminCheck

This happens once the player connects, and is allowed to be called as a new function. (Best if you package it so you don't forget up the auto admin system)

Code: (example) [Select]
package whateverYouWant
{
function GameConnection::autoAdminCheck(%this)
{
//do your stuff. %this is your client.
return Parent::autoAdminCheck(%this);
}
};
activatePackage(whateverYouWant);