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
For example, if you level up to level 50 and max your skills, you will have the skill "Double Attack", but if you then #setlevel back down to level 5, then #set skill_all 1, then #set skill_all_max (to get your skill caps back where they should be), it will APPEAR as though you DON'T have "Double Attack" anymore, but if you go attack some mobs, you WILL double-attack - and the skill will be listed in character_skills.
FWIW I came up with this query to drop skills I shouldn't have:
7 = my char ID
3 = paladin (my char)
delete from character_skills where id=7 and character_skills.skill_id in (select skill_id from skill_caps where class_id = 3 and level = 5 and cap=0);
After running that, I logged out and back in (not sure if this was necessary?) and it appears to have solved the issue.
The text was updated successfully, but these errors were encountered:
For example, if you level up to level 50 and max your skills, you will have the skill "Double Attack", but if you then #setlevel back down to level 5, then #set skill_all 1, then #set skill_all_max (to get your skill caps back where they should be), it will APPEAR as though you DON'T have "Double Attack" anymore, but if you go attack some mobs, you WILL double-attack - and the skill will be listed in character_skills.
FWIW I came up with this query to drop skills I shouldn't have:
7 = my char ID
3 = paladin (my char)
delete from character_skills where id=7 and character_skills.skill_id in (select skill_id from skill_caps where class_id = 3 and level = 5 and cap=0);
After running that, I logged out and back in (not sure if this was necessary?) and it appears to have solved the issue.
The text was updated successfully, but these errors were encountered: