It is possible? if yes can someone post an example?


By title i mean [The Destroyer] above mobiles head / items, just like faction tags

Thanks.


Cant use xmltitles since is not working for me
 
Code:
public override void OnSingleClick( Mobile from )
{
	PrivateOverheadMessage( MessageType.Label, 0, true, "[The Destroyer]", from.NetState );
	base.OnSingleClick( from );
}

This could work.
Take a look at how the PlayerMobile.cs handles the OnSingleClick method.

The code above will work if you need it on items and mobiles, but the title you give could be a variable in the item/mobile itself, or from another script.
 
Back