my server is UOR but personal bless deed doesnt display anything when you bless.
how can i make it to display blessed for...
ty
 
you would probably want to edit the OnSingleClick then for the basearmor / baseweapon to display that as well
 
i added this to baseclothing but it gives this error : m_owner cant be recognized



under addnameproperty list

{
string m_name = "a player";

if (this.m_Owner != null && !this.m_Owner.Deleted)
m_name = this.m_Owner.Name;

list.Add(1062195, m_name); // personal bless deed for ~1_NAME~
}
 
Try this:

Code:
string m_name = "a player";

if (this.Owner != null && !this.Owner.Deleted)
     m_name = this.Owner.Name;

list.Add(1062195, m_name); // personal bless deed for ~1_NAME~
 
i
Try this:

Code:
string m_name = "a player";

if (this.Owner != null && !this.Owner.Deleted)
     m_name = this.Owner.Name;

list.Add(1062195, m_name); // personal bless deed for ~1_NAME~
i added it to baseclothing and personalblessdeed.cs but it doesnt show still :(
 
Back