|
|
|
@ -1,3 +1,11 @@
@@ -1,3 +1,11 @@
|
|
|
|
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
|
|
|
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
|
|
|
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
|
|
|
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
|
|
|
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
|
|
|
|
// Magicbane Emulator Project © 2013 - 2022
|
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
package engine.powers; |
|
|
|
|
|
|
|
|
|
import java.sql.ResultSet; |
|
|
|
@ -9,6 +17,7 @@ public class RuneSkillAdjustEntry {
@@ -9,6 +17,7 @@ public class RuneSkillAdjustEntry {
|
|
|
|
|
public int token; |
|
|
|
|
public String skill_type; |
|
|
|
|
public int rank; |
|
|
|
|
public int level; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public RuneSkillAdjustEntry(ResultSet rs) throws SQLException { |
|
|
|
@ -16,6 +25,7 @@ public class RuneSkillAdjustEntry {
@@ -16,6 +25,7 @@ public class RuneSkillAdjustEntry {
|
|
|
|
|
this.token = rs.getInt("token"); |
|
|
|
|
this.skill_type = rs.getString("skill_type"); |
|
|
|
|
this.rank = rs.getInt("rank"); |
|
|
|
|
this.level = rs.getInt("level"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|