- ServUO Version
- Publish 57
- Ultima Expansion
- Endless Journey
So I just encountered an issue with FS ATS, the Bioengineering Bool for my Player Mobile is not saving so on reload all players who have learned the book have to relearn it. I checked and the Ser/Des seem to be in order but it's just not saving, no errors or anything.. would someone better than me mind taking a look at it for me..
And once again I was able to solve this.. I ended up using a new player flag for Bioenginer,
and replacing the old bool:
with the following:
And once again I was able to solve this.. I ended up using a new player flag for Bioenginer,
C#:
Bioenginer = 0x008000001,
C#:
public bool Bioenginer
{
get { return m_Bioenginer; }
set { m_Bioenginer = value; }
}
C#:
public bool Bioenginer
{
get { return GetFlag(PlayerFlag.Bioenginer); }
set { SetFlag(PlayerFlag.Bioenginer, value); }
}
Attachments
Last edited: