17.04.2012, 10:55
I have a zombie event within my server. This is the only thing adding NPC's into my server.
I have zombies continuously being connected to my server. The first 5-8 NPC's connect and work properly. But after that whenever a NPC trys to connect it just leaves almost instantly after it connects. I don't see them connecting ingame but it shows up in the console.
I have a function to avoid them having to log in.
I don't know what could be causing it! D:
I have zombies continuously being connected to my server. The first 5-8 NPC's connect and work properly. But after that whenever a NPC trys to connect it just leaves almost instantly after it connects. I don't see them connecting ingame but it shows up in the console.
I have a function to avoid them having to log in.
Код:
OnPlayerConnect(playerid); { if(IsPlayerNPC(playerid)){ SpawnPlayer(playerid); } } && public OnPlayerRequestClass(playerid, classid) { if(IsPlayerNPC(playerid)){ SpawnPlayer(playerid); } }