2021-03-14, 06:56 PM
On top of OnPlayerConnect, OnPlayerRequestSpawn, and OnPlayerSpawn callbacks. Check the player is a NPC, then return 1.
PHP Code:
if(IsPlayerNPC(playerid)) return 1;
By doing this you are passing the NPC through the login or register.
That was working at my game mode. Thanks
PHP Code:
if(IsPlayerNPC(playerid)) return 1;
By doing this you are passing the NPC through the login or register.
That was working at my game mode. Thanks