08.02.2016, 22:10
New issue:
The public OnPlayerDisconnect in pawn is not being called when server is running with Shoebill plugin. I tested this on bare.pwn:
So when I run the server with Shoebill plugin (start with startup.bat), there is no message when player disconnects. But when I run it with samp-server.exe, message is being displayed.
The public OnPlayerDisconnect in pawn is not being called when server is running with Shoebill plugin. I tested this on bare.pwn:
PHP код:
public OnPlayerDisconnect(playerid, reason)
{
printf("OnPlayerDisconnect - playerid = %d, reason = %d", playerid, reason);
return 1;
}