One problem
#1

I got this problem:

[NPC_Name] join server
[NPC_Name] join server
[NPC_Name] join server
[NPC_Name] join server
After lil bit:
[NPC_Name] left server
[NPC_Name] left server
[NPC_Name] left server
[NPC_Name] left server.

What's wrong?
Reply
#2

Do you have a registration system in your GM? If yes you have to bypass it, so the NPC's will be able to spawn.

EDIT:
pawn Код:
if(IsPlayerNPC(playerid))return 1;
Anywhere that it is looking for the input such as passwords, login and stuff...

EDIT2: Try

pawn Код:
public OnPlayerConnect(playerid)
{  
       if(IsPlayerNPC(playerid))
    {
        SpawnPlayer(playerid);
    }
}
Edit 3 I didn't see your post Lethal
Reply
#3

pawn Код:
public OnPlayerConnect(playerid)
{
    if(IsPlayerNPC(playerid)) return 1;
}
Reply
#4

It seems like your filterscripts/gamemode is kicking bots, try using [L3th4l]'s code on your filterscripts and gamemode.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)