Jump to content
  • 0

Char title


forsas

Question

Recommended Posts

  • 0

Can you explain it better..? I can't understand anything..

 

 

I say if player change title he cannot this like L2Java.Com when player change title him send message (on this server cant change title)

Link to comment
Share on other sites

  • 0

Wondering how the admins will change someone's title.

@Override
public void setTitle(String value)
{
	if (this.isGM())
	{
		if (value.length() > 16)
			value = value.substring(0, 15);

		super.setTitle(value);
	}
	else
	{
		sendMessage("something");
		return;
	}
}

Link to comment
Share on other sites

  • 0

 

Ok new how if new player or old player get pvp title update he cannot change title when press alt+n ant then write and apply title.

 

Dont listen him. find the method settitle and show it to me so i can tell u what to do

Link to comment
Share on other sites

  • 0

@Override
public void setTitle(String value)
{
	if (this.isGM())
	{
		if (value.length() > 16)
			value = value.substring(0, 15);

		super.setTitle(value);
	}
	else
	{
		sendMessage("something");
		return;
	}
}

look at your crap code then talk to me

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...