I dont know how to delete cursors. Is it possible to Delete them or are they permanent.
I'm fairly certain that they're permanent, along with characters and such.
Thanks
You could always just not use them or make them transparent :)
What you could do is this:
In the part of the game that you don't want the user to use the mouse put this:
mouse.Visible = false;
And in the on_mouse_click part of the script put something like this
function on_mouse_click(MouseButton button) {
// called when a mouse button is clicked. button is either LEFT or RIGHT
if (IsGamePaused() == 1) {
UnPauseGame();
}
else if (button == eMouseLeft) {
if (mouse.Visible == true) {
ProcessClick(mouse.x, mouse.y, mouse.Mode);
}
}
else if (button == eMouseRight) {
if (mouse.Visible == true) {
mouse.SelectNextMode();
}
}
}
This way, the click of the mouse it's only processed if the mouse is visible.