sahisahi
Member
Im trying to have city name then city title UNDER the city name. ( this is from player goverment system) i want it to display 2 different hues like faction player tags, similar to that, city name 1175 hue, and below citytitle 25 hue.
Andi got a question, how to LIMIT a title lenght? right now 25 characteres are a lot, players end up having a long ass title above their head
As u guys can see Corrupt Goverment is the City name and ''Pleb'' the title.
Thanks to fisher for the title solution for pre aos servers
Code:
public override void OnSingleClick( Mobile from )
{
if ( m_ShowCityTitle == true && m_City != null )
{
string text;
bool ascii = true;
text = String.Concat("[",this.m_City.CityName,"]","",this.m_CityTitle,"");
int hue = (1301);
PrivateOverheadMessage(MessageType.Label, hue, ascii, text, from.NetState);
}
Andi got a question, how to LIMIT a title lenght? right now 25 characteres are a lot, players end up having a long ass title above their head

As u guys can see Corrupt Goverment is the City name and ''Pleb'' the title.
Thanks to fisher for the title solution for pre aos servers