in what file is located the error ?
I mean pcinstance l2world ? where ? couse I cant see the post :S
Ok I find it.
Lets see
If you add the lines bellow you should have no problem.
Here they are.
add after:
public class L2TownZone extends L2ZoneType
{
private String _townName;
find:
public void setParameter(String name, String value)
{
add after:
if (name.equals("name"))
{
_townName = value;
}
find:
@Override
public void onReviveInside(L2Character character)
{
}
add after:
/**
* Returns this town zones name
* @return
*/
@Deprecated
public String getName()
{
return _townName;
}