image
Textarea
maptext_width = 128
maptext_height = 16
mob
var
image/Textarea/Textarea = new
client
MouseEntered(atom/o)
..()
if(src!=mob||istype(o, /mob/player)||istype(o, /mob/Enemies)||istype(o, /mob/npc))
for(var/image/Textarea/t in mob.client.images)del(t)
var/image/Textarea/t = image(mob.Textarea, o)
t.pixel_y=32
t.maptext = "<font size = 1>[o.name]"
mob.client.images+=t
MouseExited()
for(var/image/Textarea/t in mob.client.images)del(t)
Problem description: I'm trying get players to view other mobs' name when the mouse is on top of them if that makes sense. My first problem, is that I can't get the Textarea to delete once the mouse has left. Number two how can I center the name over the mob. Number 3, how can I stop it from showing the user's name meaning the one who is checking the names of over players not his.
Regards ^_^