11.02.2010, 17:16
So you're saying it should look like
?
Because the code is supposed to add one to id every time it is called until it is less than or equal to 287, which is id >= 287.
EDIT: Piece of code from Monster freeroam included in 0.2:
pawn Код:
new id;
for (id = 0; id <=287; id++)
{
AddPlayerClass(id,2878.7581,2731.8020,10.8203,82.3289,0,0,0,0,0,0); // spawn1
}
Because the code is supposed to add one to id every time it is called until it is less than or equal to 287, which is id >= 287.
EDIT: Piece of code from Monster freeroam included in 0.2:
pawn Код:
for (id = 254; id <= 288; id++)
{
if (id == 265) id = 274; // Skip over the bad ones
AddPlayerClass(id,389.8672,2543.0046,16.5391,173.7645,0,0,0,0,0,0);
}