public GameRolePlayHumanoidInformations(int contextualId = 0, EntityLook look = null, EntityDispositionInformations disposition = null, string name = "", HumanInformations humanoidInfo = null, uint accountId = 0) { ContextualId = contextualId; Look = look; Disposition = disposition; Name = name; HumanoidInfo = humanoidInfo; AccountId = accountId; }
public GameRolePlayCharacterInformations(int contextualId = 0, EntityLook look = null, EntityDispositionInformations disposition = null, string name = "", HumanInformations humanoidInfo = null, uint accountId = 0, ActorAlignmentInformations alignmentInfos = null) { ContextualId = contextualId; Look = look; Disposition = disposition; Name = name; HumanoidInfo = humanoidInfo; AccountId = accountId; AlignmentInfos = alignmentInfos; }
public GameRolePlayMutantInformations(int contextualId = 0, EntityLook look = null, EntityDispositionInformations disposition = null, string name = "", HumanInformations humanoidInfo = null, uint accountId = 0, int monsterId = 0, int powerLevel = 0) { ContextualId = contextualId; Look = look; Disposition = disposition; Name = name; HumanoidInfo = humanoidInfo; AccountId = accountId; MonsterId = monsterId; PowerLevel = powerLevel; }