Added Sayune.
This commit is contained in:
@ -900,6 +900,8 @@ public final class L2PcInstance extends L2Playable
|
||||
|
||||
private boolean _hasCharmOfCourage = false;
|
||||
|
||||
private int _jumpTrackId = 0;
|
||||
|
||||
/**
|
||||
* Create a new L2PcInstance and add it in the characters table of the database.<br>
|
||||
* <B><U> Actions</U> :</B>
|
||||
@ -14419,4 +14421,23 @@ public final class L2PcInstance extends L2Playable
|
||||
{
|
||||
getVariables().set("ABILITY_POINTS_USED", points);
|
||||
}
|
||||
|
||||
public boolean isAwaken()
|
||||
{
|
||||
if (((getActiveClass() >= 139) && (getActiveClass() <= 181)) || (getActiveClass() >= 188))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public int getJumpTrackId()
|
||||
{
|
||||
return _jumpTrackId;
|
||||
}
|
||||
|
||||
public void setJumpTrackId(int jumpTrackId)
|
||||
{
|
||||
_jumpTrackId = jumpTrackId;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user