You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.db.handlers;
|
||
|
|
||
|
import engine.objects.Resists;
|
||
|
|
||
|
import java.sql.ResultSet;
|
||
|
import java.sql.SQLException;
|
||
|
|
||
|
public class dbResistHandler extends dbHandlerBase {
|
||
|
|
||
|
public dbResistHandler() {
|
||
|
|
||
|
}
|
||
|
|
||
|
public Resists GET_RESISTS_FOR_MOB(int resistID) {
|
||
|
prepareCallable("SELECT * FROM `static_npc_mob_resists` WHERE `ID` = ?;");
|
||
|
setInt(1, resistID);
|
||
|
try {
|
||
|
ResultSet rs = executeQuery();
|
||
|
if (rs.next()) {
|
||
|
return new Resists(rs);
|
||
|
}
|
||
|
} catch (SQLException e) {
|
||
|
} finally {
|
||
|
closeCallable();
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|