Files
dsrc/sku.0/sys.server/compiled/game/script/player/skill/meditate.java
T

21 lines
488 B
Java
Executable File

package script.player.skill;
import script.obj_id;
public class meditate extends script.base_script
{
public meditate()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
detachScript(self, "player.skill.meditate");
return SCRIPT_CONTINUE;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
detachScript(self, "player.skill.meditate");
return SCRIPT_CONTINUE;
}
}