Please tell me how to remove all racial items from the loot? Items for elves and gargoyles.

And can there is a way that would remove the choice of an elf or gargoyle when creating a character?
Post automatically merged:

Remove the gargoyle when creating a character managed this way. This method will not affect the mechanics of the latest updates, I use the "EJ" era.

/Server/ExpansionInfo.cs
C#:
        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 | Gothic | Rustic,
        ExpansionHS = ExpansionML | HS,
        ExpansionTOL = ExpansionHS | TOL | Jungle | Shadowguard,
        ExpansionEJ = ExpansionTOL | EJ
 
Last edited:
Back