Reply to Re: HElp!
If you don't have an account, just leave the password field blank.
Um... I'd be more than glad to help... if I knew what is going wrong in the script
Edit: Hrm... maybe the colors don't change after you fade down? Unfortunatly, the way fade_down works is it basically makes every color black (except white), so your fill_screen() commands don't really do anything. You could try just using fill_screen() commands without the fade_down() and fade_up(), but then all of the sprites on the screen would still be visable.
Also, to reverse the effects of fill_screen(), try doing this instead of your fade_up():
draw_screen();
draw_status();

Edit: Hrm... maybe the colors don't change after you fade down? Unfortunatly, the way fade_down works is it basically makes every color black (except white), so your fill_screen() commands don't really do anything. You could try just using fill_screen() commands without the fade_down() and fade_up(), but then all of the sprites on the screen would still be visable.
Also, to reverse the effects of fill_screen(), try doing this instead of your fade_up():
draw_screen();
draw_status();