You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.
public abstract class BotSkill
{
protected int _skillId;
protected SpellUsageCondition _condition;
protected int _conditionValue;
protected int _priority;
public BotSkill(int skillId, SpellUsageCondition condition, int conditionValue, int priority)
{
_skillId = skillId;
_condition = condition;
_conditionValue = conditionValue;
_priority = priority;
}
public BotSkill(int skillId)
{
_skillId = skillId;
_condition = SpellUsageCondition.NONE;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This Important fix ( SkillsS Short in AI no have effect, [ the effect in short is because delay skills if remove delay skills confirm this issue])
Index: java/com/elfocrash/roboto/model/BotSkill.java
--- java/com/elfocrash/roboto/model/BotSkill.java (nonexistent)
+++ java/com/elfocrash/roboto/model/BotSkill.java (working copy)
@@ -0,0 +1,88 @@
package com.elfocrash.roboto.model;
public abstract class BotSkill
{
protected int _skillId;
protected SpellUsageCondition _condition;
protected int _conditionValue;
protected int _priority;
}
public BotSkill(int skillId)
{
_skillId = skillId;
_condition = SpellUsageCondition.NONE;
The text was updated successfully, but these errors were encountered: