Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead. There is no support for other server builds than the official provided by l2jserver.com
private int _isSpoiledBy = 0;
public boolean isSpoil()
{
return _isSpoiledBy > 0;
}
public final int getIsSpoiledBy()
{
return _isSpoiledBy;
}
public final void setIsSpoiledBy(int value)
{
_isSpoiledBy = value;
}
That's called "Advanced coding skills"
Anyway, it should be _spoiledBy, "is" prefix is meant for boolean variables/methods only (like isSpoil()).
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste! Discussion breeds innovation.