[New Users] Please note that all new users need to be approved before posting. This process can take up to 24 hours. Thank you for your patience.
Check out the v.254 - Midnight Carnival - Ludibrium Patch Notes
here!
[RESOLVED] Voyage vessel is completely broken
Bug: EXP over flow prevents upgrading, Icons are of an attack icon.
Character, level, and class are in the imgur
Server: Bera
I do not know if anyone else have this problem buy my vessel broken. I am unable to level up because the EXP overflowed and all of my icons are replaced my an attack icon. I have had this bug for a long, long time ago so I don't know the cause of it. It just appeared one day when I decided to check on my ships exp.
http://imgur.com/a/af0GqFIXED: I just needed to do another commerce to fix it. TY AKradian.
side note-the icons are still messed up tho, but it does not do anything from what i can see
Comments
I saw quite a few screenshots with overflowing exp bars.
They normally corrected themselves once you got more exp, because the code must be something like
vessel_exp += voyage_exp;
if (vessel_exp > exp_to_next_level[vessel_level])
{
vessel_exp -= exp_to_next_level[vessel_level];
vessel_level++;
}
But I guess that because OP's vessel is already past max exp for a sailboat, they're not getting any more exp, so that overflow doesn't get corrected.