-
v117 BPQ points
Anyone knows where the BPQ points are stored in for v117? I can't seem to find them anywhere under sql.
Code:
public final void saveBossQuest(final int points) {
if (disposed) {
return;
}
for (MapleCharacter chr : getPlayers()) {
final MapleQuestStatus record = chr.getQuestNAdd(MapleQuest.getInstance(150001));
if (record.getCustomData() != null) {
record.setCustomData(String.valueOf(points + Integer.parseInt(record.getCustomData())));
} else {
record.setCustomData(String.valueOf(points)); // First time
}
chr.modifyCSPoints(1, points / 5, true);
chr.getTrait(MapleTraitType.will).addExp(points / 100, chr);
}
}
Code for it
-
Re: v117 BPQ points
It's stored in the 'queststatus' table in your SQL. Under the column 'customData'.
-
Re: v117 BPQ points