For this, declare
int old_mouse_mode;
Again at the top of the global script.
Then just before we set the cursor to pointer:
old_mouse_mode = mouse.Mode;
Then just after enabling all the mouse modes again do:
mouse.Mode = old_mouse_mode;
I'm not able to test this right now, but you should be able to get it to work. If not maybe one of the über_scripters can chime in here...
int old_mouse_mode;
Again at the top of the global script.
Then just before we set the cursor to pointer:
old_mouse_mode = mouse.Mode;
Then just after enabling all the mouse modes again do:
mouse.Mode = old_mouse_mode;
I'm not able to test this right now, but you should be able to get it to work. If not maybe one of the über_scripters can chime in here...
