ID:1261540
 
(See the best response by Albro1.)
Code:
mob
MouseEntered()
if(istype(src,/mob/NPC/Quest))
client.mouse_pointer_icon='Quest.dmi'
MouseExited()
if(istype(src,/mob/NPC/Quest))
client.mouse_pointer_icon=""


Problem description: I don't know how to do mouse overs, but what I want is for the cursor to change when I mouse over a Quest NPC and for it to go back to the standard cursor when I exit.

Best response
The mouse_over_pointer variable should help you.

It works like this:
mob
mouse_over_pointer = 'mouse.dmi'

Now every time you put your mouse over a mob, your mouse will automatically change to 'mouse.dmi'.
In response to Albro1
Thank you, exactly what I wanted.