Sorry for asking..i'm new here..
how to change the mouse interface when the move the cursor out of hotspot & when move from the hotspot,the mouse changing back to default cursor (pointer icon)
Open Globalscript.asc, find the repeatedly_execute function, and in there, add:
int mm = mouse.Mode;
int lt = GetLocationType(mouse.x, mouse.y);
int nm;
if (lt == eLocationHotspot || lt == eLocationObject) nm = eModeInteract;
else if (lt == eLocationCharacter) nm = eModeTalkto;
else nm = eModeWalkto;
if (nm != mm) mouse.Mode = nm;
edit: corrected code