You need to run the instruction 'c_updatehull(me, frame);' where 'frame' is the enemy frame, and 'me' is the enemy pointer. this must run every few frames (not every frame, too slow!). eg:
Code:
while(1)
{
 c_updatehull(me, frame);
 wait(5);
}