- ServUO Version
- Publish 58
- Ultima Expansion
- Endless Journey
Hi!
I run the latest Repo, But I have removed Gargoyles from the server.
Now, I cannot use the latest Customized Housing Options, its all greyed out
But in the script it looks like this:
Expansion Flags looks like this:
Any help unlocking the options without bringing gargoyles back would be greatly appreciated!
I run the latest Repo, But I have removed Gargoyles from the server.
Now, I cannot use the latest Customized Housing Options, its all greyed out
But in the script it looks like this:
C#:
[Flags]
public enum HousingFlags
{
None = 0x0,
AOS = 0x10,
SE = 0x40,
ML = 0x80,
Crystal = 0x200,
SA = 0x10000,
HS = 0x20000,
Gothic = 0x40000,
Rustic = 0x80000,
Jungle = 0x100000,
Shadowguard = 0x200000,
TOL = 0x400000,
EJ = 0x800000, // TODO: Verify value
HousingAOS = AOS,
HousingSE = HousingAOS | SE,
HousingML = HousingSE | ML | Crystal,
HousingSA = HousingML | SA | Gothic | Rustic,
HousingHS = HousingSA | HS,
HousingTOL = HousingHS | TOL | Jungle | Shadowguard,
HousingEJ = HousingTOL | EJ
Expansion Flags looks like this:
C#:
None = 0x00000000,
T2A = 0x00000001,
UOR = 0x00000002,
UOTD = 0x00000004,
LBR = 0x00000008,
AOS = 0x00000010,
SixthCharacterSlot = 0x00000020,
SE = 0x00000040,
ML = 0x00000080,
EigthAge = 0x00000100,
NinthAge = 0x00000200, /* Crystal/Shadow Custom House Tiles */
TenthAge = 0x00000400,
IncreasedStorage = 0x00000800, /* Increased Housing/Bank Storage */
SeventhCharacterSlot = 0x00001000,
RoleplayFaces = 0x00002000,
TrialAccount = 0x00004000,
LiveAccount = 0x00008000,
SA = 0x00010000,
HS = 0x00020000,
Gothic = 0x00040000,
Rustic = 0x00080000,
Jungle = 0x00100000,
Shadowguard = 0x00200000,
TOL = 0x00400000,
EJ = 0x00800000, // TODO: Verify value
ExpansionNone = None,
ExpansionT2A = T2A,
ExpansionUOR = ExpansionT2A | UOR,
ExpansionUOTD = ExpansionUOR | UOTD,
ExpansionLBR = ExpansionUOTD | LBR,
ExpansionAOS = ExpansionLBR | AOS | LiveAccount,
ExpansionSE = ExpansionAOS | SE,
ExpansionML = ExpansionSE | ML | NinthAge,
ExpansionSA = ExpansionML | ML | HS | Gothic | Rustic, // SA | Gothic | Rustic,
ExpansionHS = ExpansionSA | ML | HS | Gothic | Rustic, //HS,
ExpansionTOL = ExpansionHS | ML | HS | Gothic | Rustic, // TOL | Jungle | Shadowguard,
ExpansionEJ = ExpansionTOL | ML | HS | Gothic | Rustic //EJ
}
Any help unlocking the options without bringing gargoyles back would be greatly appreciated!