Hallo,
mit diesem Script wird bei for() automatisch MAX_PLAYERS auf die höchste playerid gesetzt.
dafür müsst ihr nur folgende sachen in euer script einfügen:
möglichst direkt nach den includes:
new MAX_PLAYER=MAX_PLAYERS;
#define for(%1MAX_PLAYERS%2) for(%1MAX_PLAYER%2)
beim connecten:
if(playerid>MAX_PLAYER) MAX_PLAYER=playerid;
beim disconnecten:
if(playerid==MAX_PLAYER)
for(new i=0;i<playerid;i++)
if(IsPlayerConnected(i))
MAX_PLAYER=i;
MfG Metin
edit: überschrift gewechselt
edit: verbessert