Example #1
0
 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;
 }
Example #2
0
 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;
 }
Example #3
0
 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;
 }