Hallo,
ich benutze für ein Botsystem das Plugin FCNPC(früher ARNPC).
Das Plugin connected seine Bots von MAX_PLAYERS abwärts.
ARNPC connected von 0 aufwärts.
Es entsteht folgendes Problem:
for(new i;i<MAX_PLAYERS;i++)
{
if(IsPlayerNPC(i))
{
if(NPCInfo[i][nID]==npcid)return i;
}
}
return -1;
Diese Schleife wird immer -1 zurückliefern, weil MAX_PLAYERS durch jeden connecteten Bots um 1 abnimmt.
Beispiel: Bot(Id:499) connected, MAX_PLAYERS(500) wird zu MAX_PLAYERS-1(499)
Wie kann ich dieses Problem beheben ?