ID:157922
 
Basically in my game a there is a name overlay which is visible from login, but i dont want it to be there all the time, only when a usr puts the mouse over a usr the name overlay shows only to him and when mouse is exited the name overlay dissapeares but i have no idea how do this so if anyone could help me it would be much apreciated. Thank you for reading my post.

Setox
You'd need to use an image object together with MouseEntered() and MouseExited(). Look em all up in the reference.
In response to Kaioken
Thanks for replying and helping i set the obj/name to invisible = 1
that's what i got it didn't work but i don't know what I'm doing wrong.

This is what i got.
mob
MouseEntered()
if(src.client)
usr.see_invisible = 1
usr << output ("hey","system")
else
return
MouseExited()
if(src.client)
usr.see_invisible = 0
usr << output ("bye","system")
else
return


Btw i didnt get any errors or runtime errors.
In response to Setox
Setox wrote:
i don't know what I'm doing wrong.

You've never even tried to use image objects, for one. Look them up.