w_sup everyone?
I know how to switch mouse courser on and off on_level_load.
What I can't figure out is how to switch mouse courser on only certain levels, sense I have a lot of levels and I need to switch courser on specified level with out using on_a-z buttons.
Is it possible to do this and how?
Thank you if you chose to help.
on_level_load = change_mouse_mode;
function change_mouse_mode()
{
mouse_map = cursor_pcx;
if (mouse_mode >= 1)
{ // was it already on?
mouse_mode = 0;
}
else
{
mouse_mode = 1;
}
while (mouse_mode > 0) // move it over the screen
{
vec_set(mouse_pos,mouse_cursor);
wait(1);
}
}