10.11.2009, 05:52
Make your void "onplayerconnect" look something like this:
Not tested, but should work.
Код:
public OnPlayerConnect(playerid)
{
if(IsPlayerNPC(playerid)) //Checks if the player that just spawned is an NPC.
{
} else {
//normal login stuff here
}
return 1;
}

