I'm not sure why that way is not working (I haven't tried) but try:

set(p, MOVE | BRIGHT);

worked for me.


EDIT:
Just tried it and I found the following solution:

try changing

p.flags |= BRIGHT | MOVE;

to

p.flags |= (BRIGHT | MOVE);



Last edited by RichLockard; 06/30/07 01:53.