don`t use the "*" after VECTOR.
VECTOR* crowd_pos[100]; // is wrong
VECTOR crowd_pos[100]; // use this

The Engine supports only 64 VECTOR Pointer, so you don`t can define 100 Pointers (*), define the VECTOR directly(without *).

(as Spirit says in his post)