Example #1
0
 public override void Setup(Character character)
 {
     base.Setup(character);
     originalFaction       = m_character.m_faction;
     m_character.m_faction = Character.Faction.Players;
     typeof(BaseAI).GetMethod("SetAlerted", BindingFlags.NonPublic | BindingFlags.Instance).Invoke(character.GetBaseAI(), new object[] { false });
 }
    public Team CreateATeam(string name, Character.Faction faction)
    {
        Team t = new Team();

        t.name   = name;
        t.roster = new ArrayList();
        t.points = 0;
        t.funds  = 100;
        for (int i = 0; i < 10; i++)
        {
            t.roster.Add(Character.CreateRandomCharacter(faction));
        }
        return(t);
    }
Example #3
0
 public CharacterData(Character c)
 {
     firstName           = c.firstName;
     lastName            = c.lastName;
     characterGender     = c.characterGender;
     characterProfession = c.characterProfession;
     characterFaction    = c.characterFaction;
     strength            = c.strength;
     skill         = c.skill;
     wisdom        = c.wisdom;
     overallRating = c.overallRating;
     currentHealth = c.currentHealth;
     maximumHealth = c.maximumHealth;
     traits        = c.traits;
     personalities = c.personalities;
     if (characterProfession == Character.Profession.whitemage)
     {
         healThreshold   = ((WhiteMage)c).healThreshold;
         healReserves    = ((WhiteMage)c).healReserves;
         healReservesMax = ((WhiteMage)c).healReservesMax;
     }
 }
Example #4
0
 public ModifierSetFaction(Character.Faction faction)
 {
     Faction = faction;
 }
Example #5
0
 public void ChangeFaction(Character.Faction f)
 {
     m_hum.m_faction = f;
 }
Example #6
0
 bool IEveRepository.TryGetFactionById(Character.FactionId id, out Character.Faction value)
 {
     throw new NotImplementedException();
 }
Example #7
0
        internal static void LateLoadMiniSquito(GameObject clone)
        {
            Character component  = (Character)clone.GetComponent <Character>();
            BaseAI    component2 = (BaseAI)clone.GetComponent <BaseAI>();

            component.m_name = "Squito";
            Character character1 = component;

            character1.m_health = 5;
            Character character2 = component;

            character2.m_acceleration = (float)(character2.m_acceleration * 0.75);
            Character character3 = component;

            character3.m_speed = (float)(character3.m_speed * 0.75);
            Character character4 = component;

            character4.m_walkSpeed = (float)(character4.m_walkSpeed * 0.75);
            Character character5 = component;

            character5.m_runSpeed = (float)(character5.m_runSpeed * 0.75);
            Character character6 = component;

            character6.m_flySlowSpeed = (float)(character6.m_flySlowSpeed * 0.75);
            Character character7 = component;

            character7.m_flyFastSpeed = (float)(character7.m_flyFastSpeed * 1.25);

            Rigidbody rigidbody = clone.GetComponent <Rigidbody>();

            rigidbody.mass = 3f;

            Humanoid humanoid = (Humanoid)component;

            Character.Faction nFaction = Character.Faction.Players;
            humanoid.m_faction      = nFaction;
            humanoid.m_defaultItems = new GameObject[1]
            {
                DesignSquitoSting()
            };


            MonsterAI monsterAI = (MonsterAI)clone.GetComponent <BaseAI>();

            monsterAI.m_viewRange              = (int)15;
            monsterAI.m_deathMessage           = "Friendly Squito Down!";
            monsterAI.m_enableHuntPlayer       = false;
            monsterAI.m_circulateWhileCharging = false;
            monsterAI.m_flyAltitudeMin         = 0.4f;

            Tameable   tameable   = (Tameable)clone.AddComponent <Tameable>();
            GameObject wolfObject = (GameObject)RRRLateLoadPrefabs.Clone("Wolf", "tameClone2", true, true);
            Tameable   wolfTame   = (Tameable)wolfObject.GetComponent <Tameable>();

            tameable.m_fedDuration = wolfTame.m_fedDuration;
            tameable.m_tamingTime  = wolfTame.m_tamingTime;
            tameable.m_commandable = true;
            tameable.m_tamedEffect = new EffectList();

            CharacterDrop characterDrop = (CharacterDrop)clone.GetComponent <CharacterDrop>();

            characterDrop.m_drops.Clear();

            MiniSquito.DesignAppearance(clone);
        }
Example #8
0
        internal static void LateLoadMiniSkelly(GameObject clone)
        {
            Character component  = (Character)clone.GetComponent <Character>();
            BaseAI    component2 = (BaseAI)clone.GetComponent <BaseAI>();

            component.m_name = "Skeleton";
            Character character1 = component;

            character1.m_health = 20;
            Character character2 = component;

            character2.m_acceleration = (float)(character2.m_acceleration * 1.75);
            Character character3 = component;

            character3.m_speed = (float)(character3.m_speed * 3.5);
            Character character4 = component;

            character4.m_walkSpeed = (float)(character4.m_walkSpeed * 2);
            Character character5 = component;

            character5.m_runSpeed = (float)(character5.m_runSpeed * 2.5);

            Rigidbody rigidbody = clone.GetComponent <Rigidbody>();

            rigidbody.mass = 0.5f;

            Humanoid humanoid = (Humanoid)component;

            Character.Faction nFaction = Character.Faction.Players;
            humanoid.m_faction      = nFaction;
            humanoid.m_defaultItems = new GameObject[1]
            {
                DesignSkellySword()
            };

            humanoid.m_randomShield = new GameObject[1]
            {
                DesignSkellyShield()
            };
            humanoid.m_randomWeapon = null;

            MonsterAI monsterAI = (MonsterAI)clone.GetComponent <BaseAI>();

            monsterAI.m_viewRange              = (int)15;
            monsterAI.m_deathMessage           = "Friendly Skelly Down!";
            monsterAI.m_enableHuntPlayer       = false;
            monsterAI.m_circulateWhileCharging = false;

            Tameable   tameable   = (Tameable)clone.AddComponent <Tameable>();
            GameObject wolfObject = (GameObject)RRRLateLoadPrefabs.Clone("Wolf", "tameClone", true, true);
            Tameable   wolfTame   = (Tameable)wolfObject.GetComponent <Tameable>();

            tameable.m_fedDuration = wolfTame.m_fedDuration;
            tameable.m_tamingTime  = wolfTame.m_tamingTime;
            tameable.m_commandable = true;

            CharacterDrop characterDrop = (CharacterDrop)clone.GetComponent <CharacterDrop>();

            characterDrop.m_drops.Clear();

            MiniSkelly.DesignAppearance(clone);
        }
 public static ILocalSpawnBuilder SetModifierFaction(this ILocalSpawnBuilder builder, Character.Faction faction)
 {
     builder.SetModifier(new ModifierSetFaction(faction));
     return(builder);
 }
Example #10
0
 /// <summary>
 /// Sets "faction" in zdo.
 /// </summary>
 /// <remarks>Spawn That setting.</remarks>
 public static void SetFaction(this ZDO zdo, Character.Faction faction)
 {
     zdo.Set(FactionHash, (int)faction);
 }
Example #11
0
        internal static void LateLoadGroot(GameObject clone)
        {
            Character component  = (Character)clone.GetComponent <Character>();
            BaseAI    component2 = (BaseAI)clone.GetComponent <BaseAI>();

            component.m_name = "Groot";
            Character character1 = component;

            character1.m_health = 400;
            Character character2 = component;

            character2.m_acceleration = (float)(character2.m_acceleration * 0.8);
            Character character3 = component;

            character3.m_speed = (float)(character3.m_speed * 0.8);
            Character character4 = component;

            character4.m_walkSpeed = (float)(character4.m_walkSpeed * 0.8);
            Character character5 = component;

            character5.m_runSpeed = (float)(character5.m_runSpeed * 0.7);

            Rigidbody rigidbody = clone.GetComponent <Rigidbody>();

            rigidbody.mass = 50;

            Humanoid humanoid = (Humanoid)component;

            humanoid.m_defaultItems = (GameObject[])new GameObject[2]
            {
                Groot.DesignThornAttack(),
                    Groot.DesignPunch(component)
            };
            Character.Faction nFaction = Character.Faction.Players;
            humanoid.m_faction            = nFaction;
            humanoid.m_randomSets         = null;
            humanoid.m_boss               = false;
            humanoid.m_bossEvent          = null;
            humanoid.m_defeatSetGlobalKey = null;

            MonsterAI monsterAI = (MonsterAI)clone.GetComponent <BaseAI>();

            Pathfinding.AgentType npath = Pathfinding.AgentType.HorseSize;
            monsterAI.m_pathAgentType    = npath;
            monsterAI.m_viewRange        = (int)30;
            monsterAI.m_spawnMessage     = "I am Groot";
            monsterAI.m_deathMessage     = "Groot sad";
            monsterAI.m_enableHuntPlayer = false;

            Tameable   tameable   = (Tameable)clone.AddComponent <Tameable>();
            GameObject wolfObject = (GameObject)RRRLateLoadPrefabs.Clone("Wolf", "wolfClone", true, true);
            Tameable   wolfTame   = (Tameable)wolfObject.GetComponent <Tameable>();

            tameable.m_fedDuration = wolfTame.m_fedDuration;
            tameable.m_tamingTime  = wolfTame.m_tamingTime;
            tameable.m_commandable = true;
            tameable.m_tamedEffect = new EffectList();

            FootStep   footStep   = (FootStep)clone.GetComponent <FootStep>();
            GameObject greyObject = (GameObject)RRRLateLoadPrefabs.Clone("Greydwarf_Elite", "grayClone", true, true);
            FootStep   greyStep   = (FootStep)greyObject.GetComponent <FootStep>();

            footStep.m_effects = greyStep.m_effects;

            CharacterDrop characterDrop = (CharacterDrop)clone.GetComponent <CharacterDrop>();

            characterDrop.m_drops.Clear();
            CharacterDrop.Drop drop = new CharacterDrop.Drop()
            {
                m_prefab = ZNetScene.instance.GetPrefab("Wood")
            };
            characterDrop.m_drops.Add(drop);

            GameObject bruteDeath = RRRLateLoadPrefabs.Clone("sfx_greydwarf_elite_death", "vfx_" + clone.name + "_death", true, false);

            humanoid.m_deathEffects.m_effectPrefabs[0].m_prefab = bruteDeath;

            GameObject clone1 = RRRLateLoadPrefabs.Clone("Greydwarf_elite_ragdoll", clone.name + "_ragdoll", true, false);

            ((EffectList.EffectData)((EffectList)component.m_deathEffects).m_effectPrefabs[1]).m_prefab = (GameObject)clone1;

            Groot.DesignAppearance(clone);
        }
Example #12
0
        internal static void LateLoadDwarf(GameObject clone)
        {
            for (int index = 0; index < clone.transform.childCount; ++index)
            {
                GameObject.Destroy(clone.transform.GetChild(index).gameObject);
            }
            GameObject prefab = ZNetScene.instance.GetPrefab("Haldor");
            GameObject eyePos = (GameObject)null;

            for (int index = 0; index < prefab.transform.childCount; ++index)
            {
                GameObject gameObject = GameObject.Instantiate <GameObject>(prefab.transform.GetChild(index).gameObject, clone.transform);
                gameObject.name = gameObject.name.TrimCloneTag();
                if (gameObject.name == "EyePos")
                {
                    eyePos = gameObject;
                }
                if (gameObject.name == "Pipe")
                {
                    GameObject.Destroy(gameObject);
                }
            }

            VisEquipment component1 = clone.GetComponent <VisEquipment>();

            component1.m_bodyModel          = clone.transform.Find("Haldor/HaldorTheTrader/Haldor").GetComponent <SkinnedMeshRenderer>();
            component1.m_leftHand           = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.l/Upperarm.l/Underarm.l/Wrist.l/Shoulder.l.016/Shoulder.l.017/Shoulder.l.018").GetComponent <Transform>();
            component1.m_rightHand          = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Middle1.r").GetComponent <Transform>();
            component1.m_helmet             = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Head/Jaw").GetComponent <Transform>();
            component1.m_backShield         = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();
            component1.m_backMelee          = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();
            component1.m_backTwohandedMelee = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();
            component1.m_backBow            = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();
            component1.m_backTool           = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();
            component1.m_backAtgeir         = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/Spine0/Spine1/Spine2/Shoulder.r/Upperarm.r/Underarm.r/Wrist.r/Pipe.001").GetComponent <Transform>();

            /*
             * component1.m_clothColliders = new CapsuleCollider[5]
             * {
             *   clone.transform.Find("Visual/Armature/Hips/ClothCollider").GetComponent<CapsuleCollider>(),
             *   clone.transform.Find("Visual/Armature/Hips/LeftUpLeg/ClothCollider").GetComponent<CapsuleCollider>(),
             *   clone.transform.Find("Visual/Armature/Hips/RightUpLeg/ClothCollider").GetComponent<CapsuleCollider>(),
             *   clone.transform.Find("Visual/Armature/Hips/Spine/Spine1/ClothCollider (3)").GetComponent<CapsuleCollider>(),
             *   clone.transform.Find("Visual/Armature/Hips/Spine/Spine1/Spine2/ClothCollider (4)").GetComponent<CapsuleCollider>()
             * };
             */

            component1.m_models   = prefab.GetComponent <VisEquipment>().m_models;
            component1.m_isPlayer = true;

            /*
             * CapsuleCollider component2 = clone.GetComponent<CapsuleCollider>();
             * component2.center = prefab.GetComponent<CapsuleCollider>().center;
             * component2.radius = prefab.GetComponent<CapsuleCollider>().radius;
             * component2.height = prefab.GetComponent<CapsuleCollider>().height;
             */
            //clone.GetComponent<Rigidbody>().interpolation = prefab.GetComponent<Rigidbody>().interpolation;
            ZSyncAnimation component3 = clone.GetComponent <ZSyncAnimation>();
            ZSyncAnimation component4 = prefab.GetComponent <ZSyncAnimation>();

            component3.m_syncBools  = new List <string>((IEnumerable <string>)component4.m_syncBools);
            component3.m_syncFloats = new List <string>((IEnumerable <string>)component4.m_syncFloats);
            component3.m_syncInts   = new List <string>((IEnumerable <string>)component4.m_syncInts);
            FootStep component5 = clone.GetComponent <FootStep>();
            FootStep component6 = prefab.GetComponent <FootStep>();

            component5.m_footstepCullDistance = component6.m_footstepCullDistance;
            component5.m_effects.Clear();
            foreach (FootStep.StepEffect effect in component6.m_effects)
            {
                component5.m_effects.Add(effect);
            }
            component5.m_feet[0] = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/UpperLeg.l/LowerLeg.l/Foot.l/Foot2.l");
            component5.m_feet[1] = clone.transform.Find("Haldor/HaldorTheTrader/Armature/Root/Hip/UpperLeg.r/LowerLeg.r/Foot.r/Foot2.r");

            GameObject playerPrefab = RRRLateLoadPrefabs.Clone("Player", "newPlays", true, true);
            Humanoid   component11  = clone.GetComponent <Humanoid>();
            Humanoid   component21  = playerPrefab.GetComponent <Humanoid>();

            component11.m_eye              = eyePos.transform;
            component11.m_crouchSpeed      = component21.m_crouchSpeed;
            component11.m_walkSpeed        = component21.m_walkSpeed;
            component11.m_speed            = component21.m_speed;
            component11.m_turnSpeed        = component21.m_turnSpeed;
            component11.m_runSpeed         = component21.m_runSpeed;
            component11.m_runTurnSpeed     = component21.m_runTurnSpeed;
            component11.m_acceleration     = component21.m_acceleration;
            component11.m_jumpForce        = component21.m_jumpForce;
            component11.m_jumpForceForward = component21.m_jumpForceForward;
            component11.m_swimDepth        = component21.m_swimDepth;
            component11.m_swimSpeed        = component21.m_swimSpeed;

            /*
             * component11.m_damageModifiers = component21.m_damageModifiers.Clone();
             * component11.m_defaultItems = new GameObject[0];
             * component11.m_randomWeapon = new GameObject[0];
             * component11.m_randomArmor = new GameObject[0];
             * component11.m_randomShield = new GameObject[0];
             * component11.m_randomSets = new Humanoid.ItemSet[0];
             */

            Character component  = (Character)clone.GetComponent <Character>();
            BaseAI    component2 = (BaseAI)clone.GetComponent <BaseAI>();

            component.m_name = "Dwarf";
            Character character1 = component;

            character1.m_health = 100;

            /*
             * Character character2 = component;
             * character2.m_acceleration = (float)(character2.m_acceleration * 0.8);
             * Character character3 = component;
             * character3.m_speed = (float)(character3.m_speed * 0.8);
             * Character character4 = component;
             * character4.m_walkSpeed = (float)(character4.m_walkSpeed * 0.8);
             * Character character5 = component;
             * character5.m_runSpeed = (float)(character5.m_runSpeed * 0.7);
             */
            Humanoid humanoid = (Humanoid)component;

            humanoid.m_defaultItems = (GameObject[])new GameObject[1]
            {
                RRRLateLoadPrefabs.Clone("SwordIron", "SwordIron2", true, true)
                //Dwarf.DesignAxeAttack(),
                //Dwarf.DesignAxeAttack2()
            };
            Character.Faction nFaction = Character.Faction.Players;
            humanoid.m_faction    = nFaction;
            humanoid.m_randomSets = null;

            MonsterAI monsterAI = clone.GetComponent <MonsterAI>();

            monsterAI.m_viewRange        = (int)25;
            monsterAI.m_spawnMessage     = "Dwarf, ready!";
            monsterAI.m_deathMessage     = "Oww!";
            monsterAI.m_enableHuntPlayer = false;

            Tameable   tameable   = (Tameable)clone.AddComponent <Tameable>();
            GameObject wolfObject = (GameObject)RRRLateLoadPrefabs.Clone("Wolf", "wolfClone9000", true, true);
            Tameable   wolfTame   = (Tameable)wolfObject.GetComponent <Tameable>();

            tameable.m_fedDuration = wolfTame.m_fedDuration;
            tameable.m_tamingTime  = wolfTame.m_tamingTime;
            tameable.m_commandable = true;

            FootStep   footStep   = (FootStep)clone.AddComponent <FootStep>();
            GameObject greyObject = (GameObject)RRRLateLoadPrefabs.Clone("Player", "playClone", true, true);
            FootStep   greyStep   = (FootStep)greyObject.GetComponent <FootStep>();

            footStep = greyStep;

            CharacterDrop characterDrop = (CharacterDrop)clone.AddComponent <CharacterDrop>();

            characterDrop.m_drops.Clear();
            CharacterDrop.Drop drop = new CharacterDrop.Drop()
            {
                m_prefab = ZNetScene.instance.GetPrefab("Coins")
            };
            characterDrop.m_drops.Add(drop);

            //Dwarf.DesignAppearance(clone);
        }