• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

NPCMod and Addons

1. No, only vanilla weapons can be given to npcs  2. not sure what youre asking here, there are bandit/raider packs and companion packs 3. yes, you can edit their hp in the entity class xml
Second question has a lot more context when read back just a little more upwards on this page. I'll quote it.

"[SIZE=14.6px]My second question is about the persistency for AI, i know that friendly NPC's, hirable will remain on server when everyone is offline. But i've noticed that when i spawn in soldiers/or bandits (Made them hostile, naturally.) Won't stick around on server when i leave. (Yes i did spawn them in with the persistency option.) Is there a way to make them persistent in the code?"[/SIZE]

Unfortunately[SIZE=14.6px] i do not see anything in relation of health points within any of the XML files contained within the NPC addon packs 😕[/SIZE]

If you spawn in characters using the dynamic spawning tab of F6, they wont stay in game when you log off.  Use the biome spawner tab instead.

Changing it should work if you edited the correct file and saved it.
Ah right, yeah i haven't even bothered checking out F6, i assumed that 'persistent' spawning was good enough.
Cheers!

Ryan said:
Second question has a lot more context when read back just a little more upwards on this page. I'll quote it.

"[SIZE=14.6px]My second question is about the persistency for AI, i know that friendly NPC's, hirable will remain on server when everyone is offline. But i've noticed that when i spawn in soldiers/or bandits (Made them hostile, naturally.) Won't stick around on server when i leave. (Yes i did spawn them in with the persistency option.) Is there a way to make them persistent in the code?"[/SIZE]

Unfortunately[SIZE=14.6px] i do not see anything in relation of health points within any of the XML files contained within the NPC addon packs 😕[/SIZE]

Ah right, yeah i haven't even bothered checking out F6, i assumed that 'persistent' spawning was good enough.
Cheers!
Hate it that you can't edit posts, eitherway.
Would health be related to the "<property name="Mass" value="130" />" value?
(Managed to try and find this in the civilians addon, assuming thats whats referencing health.)

 
:flame: Anyone around here who knows how to create mods and especially knows how to create NPC mods? I am interested in hiring  :rockon:

 
Last edited by a moderator:
Second question has a lot more context when read back just a little more upwards on this page. I'll quote it.

"[SIZE=14.6px]My second question is about the persistency for AI, i know that friendly NPC's, hirable will remain on server when everyone is offline. But i've noticed that when i spawn in soldiers/or bandits (Made them hostile, naturally.) Won't stick around on server when i leave. (Yes i did spawn them in with the persistency option.) Is there a way to make them persistent in the code?"[/SIZE]

Unfortunately[SIZE=14.6px] i do not see anything in relation of health points within any of the XML files contained within the NPC addon packs 😕[/SIZE]

Ah right, yeah i haven't even bothered checking out F6, i assumed that 'persistent' spawning was good enough.
Cheers!

Hate it that you can't edit posts, eitherway.
Would health be related to the "<property name="Mass" value="130" />" value?
(Managed to try and find this in the civilians addon, assuming thats whats referencing health.)
<passive_effect name="HealthMax" operation="base_set" value="100"/>

:flame: Anyone around here who knows how to create mods and especially knows how to create NPC mods? I am interested in hiring  :rockon:
no

 
If you spawn in characters using the dynamic spawning tab of F6, they wont stay in game when you log off.  Use the biome spawner tab instead.

Changing it should work if you edited the correct file and saved it.
Sadly flicking on the 'From Biome Spawner' option in F6 doesn't keep the character existent.
I can't seem to find any other information of a 'biome spawner tab' anywhere.

 
That line needs to be inside an effect group.  example:

            <effect_group name="Base Effects">
                <passive_effect name="DistractionResistance" operation="base_set" value="0,0"/>
                <passive_effect name="HealthMax" operation="base_set" value="300"/>
                <passive_effect name="HealthMax" operation="perc_set" value="1"/>

</effect_group>    

 
Changing it should work if you edited the correct file and saved it.
It does. It won't change an existing in-game character but any I spawn with F6 have the correct name. When I tried it previously, I was only checking the one I hired. Gonna edit entities and give them all specific names. Starting a new game should clear all "King Moneybags" and spawn the new ones. Thanks xyth

 
That line needs to be inside an effect group.  example:

            <effect_group name="Base Effects">
                <passive_effect name="DistractionResistance" operation="base_set" value="0,0"/>
                <passive_effect name="HealthMax" operation="base_set" value="300"/>
                <passive_effect name="HealthMax" operation="perc_set" value="1"/>

</effect_group>    
So i just dump that code in-between the entityclasses.xml?
Because, i admittingly have no clue where i am supposed to put that code, all i want is just to increase specific NPC's health.

Aka:

         <entity_class name="npcSoldierGBDAxe" extends="npcAxeTemplate"> 
            <property name="UserSpawnType" value="Menu"/><property name="Tags"                    value="entity,male,npc,walker,melee,UMA2,DRMid,Axe,Knife,Pistol,TRifle,M60,RocketL"/>
            <property name="Faction" value="military"/>
            <property name="LookAtAngle" value="0"/>
            <property name="Names" value="Lt Dan,Cpt Price,Lt Green,Cpt Easy,Lt Brooks,Cpt Hernandez,Lt Rollins,Cpt Clarke" />                
            <property name="Mesh" value="#@modfolder:Resources/DarksSoldierz.unity3d?SoldierGasBeretDark"/> 
            <property name="LootDropProb" value="0.2"/> 
            <property name="LootDropEntityClass" value="EntityLootContainerStrong"/>    
            <property name="AIPackages" value="NPCModCoreNoChat, NPCModHostileMeleeBasic, NPCModHostileRangedBasic"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <effect_group name="Base Effects">
            <passive_effect name="DistractionResistance" operation="base_set" value="0,0"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <passive_effect name="HealthMax" operation="perc_set" value="1"/>

</effect_group>    
        </entity_class>    

Ryan said:
So i just dump that code in-between the entityclasses.xml?
Because, i admittingly have no clue where i am supposed to put that code, all i want is just to increase specific NPC's health.

Aka:

         <entity_class name="npcSoldierGBDAxe" extends="npcAxeTemplate"> 
            <property name="UserSpawnType" value="Menu"/><property name="Tags"                    value="entity,male,npc,walker,melee,UMA2,DRMid,Axe,Knife,Pistol,TRifle,M60,RocketL"/>
            <property name="Faction" value="military"/>
            <property name="LookAtAngle" value="0"/>
            <property name="Names" value="Lt Dan,Cpt Price,Lt Green,Cpt Easy,Lt Brooks,Cpt Hernandez,Lt Rollins,Cpt Clarke" />                
            <property name="Mesh" value="#@modfolder:Resources/DarksSoldierz.unity3d?SoldierGasBeretDark"/> 
            <property name="LootDropProb" value="0.2"/> 
            <property name="LootDropEntityClass" value="EntityLootContainerStrong"/>    
            <property name="AIPackages" value="NPCModCoreNoChat, NPCModHostileMeleeBasic, NPCModHostileRangedBasic"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <effect_group name="Base Effects">
            <passive_effect name="DistractionResistance" operation="base_set" value="0,0"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <passive_effect name="HealthMax" operation="perc_set" value="1"/>

</effect_group>    
        </entity_class>    
Also, i don't know where i am supposed to see this biome spawner tab*

 
So i just dump that code in-between the entityclasses.xml?
Because, i admittingly have no clue where i am supposed to put that code, all i want is just to increase specific NPC's health.

Aka:

         <entity_class name="npcSoldierGBDAxe" extends="npcAxeTemplate"> 
            <property name="UserSpawnType" value="Menu"/><property name="Tags"                    value="entity,male,npc,walker,melee,UMA2,DRMid,Axe,Knife,Pistol,TRifle,M60,RocketL"/>
            <property name="Faction" value="military"/>
            <property name="LookAtAngle" value="0"/>
            <property name="Names" value="Lt Dan,Cpt Price,Lt Green,Cpt Easy,Lt Brooks,Cpt Hernandez,Lt Rollins,Cpt Clarke" />                
            <property name="Mesh" value="#@modfolder:Resources/DarksSoldierz.unity3d?SoldierGasBeretDark"/> 
            <property name="LootDropProb" value="0.2"/> 
            <property name="LootDropEntityClass" value="EntityLootContainerStrong"/>    
            <property name="AIPackages" value="NPCModCoreNoChat, NPCModHostileMeleeBasic, NPCModHostileRangedBasic"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <effect_group name="Base Effects">
            <passive_effect name="DistractionResistance" operation="base_set" value="0,0"/>
            <passive_effect name="HealthMax" operation="base_set" value="385"/>
            <passive_effect name="HealthMax" operation="perc_set" value="1"/>

</effect_group>    
        </entity_class>    

Also, i don't know where i am supposed to see this biome spawner tab*
Another quote, got the health, it is, matter a fact. That way. Thanks for giving me the full code!

 
Hey there! I was hoping to create my own Add On Expansion or even a mod for private/personal use, and was wondering how I can go about that? This would not be for public use. Feel free to skip to the bottom for the specific questions. :)

My goal is to:

  • Rebuild Society


    NPC Settlement


    There are two ways to "settle": Players can receive NPC quests to clear residential and workplace POIs that the NPCs will then occupy OR players can place modded NPC claim blocks (Residence Block and Workplace Block). These blocks allow players to assign NPCs to specified POIs or custom buildings.
  • Residences:


    Location:


    If utilizing a POI, it must be cleared of sleepers via a questline to be considered a safe living environment.
  • If utilizing a Residential Block (RB), it must have an enclosed space with a door and enough unoccupied beds.

[*]Utility:


  • Acts as a safe zone for NPCs to "retire" during night hours.
  • The number of beds in a POI or RB determine the number of NPCs that can live there.


    Single Beds count +1 towards the overall space limit for both adults and children.


    Ex: Bedroll, Sleeping Bag, Mattress, Bunk Bed (individual), and Bunk Bed (stacked)


    A stacked Bunk Bed would still count as two, just the mod would count the Bunk Bed "individuals" separately.



[*]Double Beds count as +2 towards the overall space limit for adults only.


  • King Size Bed



[*]Must receive quest to clear house in order for NPCs to move in OR can place a RB and assign NPCs to it (won't get "Settled" quest reward).





[*]Workplaces:


  • Workplace Block (WB)


    Assign adult NPCs to POIs based on profession type.


    Child NPCs can be assigned (automatically for NPC children or manually for player children) to a school as long as it is cleared and at least one Teacher is assigned to it. (currently has no purpose other than giving them something to do)

[*]NPCs assigned to a work block travel to the POI at 6am and leave work at 8pm.

[*]Certain work places (Ex: Army Camps) also double as suitable housing.



[*]Location:


  • If utilizing a POI, it must be cleared of sleepers via a questline to be considered a safe work environment.


    If the building was already cleared, it will reset it to the previous state upon accepting and starting the quest!

[*]If utilizing a Workplace Block (WB), it must have an enclosed space with a door and at least one workstation. (see In-Depth Professions)

[*]Must receive quest to clear house in order for NPCs to move in OR can place a RB and assign NPCs to it (won't get "Need a House" quest reward).



[*]Utility:


  • Opens up profession-related trading and quests once an NPC has a valid workplace. (adults)
  • Opens up a school system for children and teenagers. (currently no purpose)
  • Makes NPCs look like they actually have something to do.
  • Gives purpose to cleared POI buildings.

[*]Work Hours:


  • 6am - 8pm Mon - Saturday with some exceptions. (I plan to make the day of the visible to make this easier)


    Blood Moon hours cut off at 6pm to allow for travel to a "safe house" (if available) or trader.
  • Most workplaces closed on Sunday with the exception of medical services and churches (if any).







[*]NPC Protection


  • Designate a location as the town's "safe house" for blood moon nights.
  • NPCs will go to work on blood moon days like normal, but instead of returning to their own house at night, they will travel to the "safe house" for the duration of the blood moon.
  • At 6am following the blood moon, NPCs will travel to work like normal and return to their own houses again in the evening, continuing on until the following blood moon.

[*]NPC Population Expansion


  • All available NPCs (via expansion) can only be found:


    In Vanilla Trader Outposts - White River Settlers
  • Military Bases (army barracks, army camps, etc) - Neutral Faction
  • xxx - Duke's Faction (location undecided)
  • Note: NPCs do not spawn outside of above locations (no aimless roaming) and will not respawn on death.


    In the case that NPCs in certain area are entirely eradicated, you can bring in new settlers by:


    Completing trader quests (rescue trapped NPCs, find wandering NPCs, etc).





[*]NPCs (and players if desired) will be able to settle down and raise a family. (see Romantic Interactions)

[*]NPC children will generate over time to fill those beds. Generation will stop when all beds are filled, and resume when beds become empty again.

[*]Romantic Interactions (Ask Out / Marry / Propagate*):


  • Allow for NPC Population Expansion, as well as have someone to survive the apocalypse with.


    Available Between:


    NPC to NPC (happens behind the scenes)
  • NPC to Player (player must instigate)
  • Player to Player

[*]Propagate*


  • PG Rating - Hearts or something
  • Requires:


    Two (2) adults in a relationship - must be healthy and well fed / hydrated
  • At least one (1) unclaimed bed


    In an occupied Residential POI / Block (NPC)
  • Within range of a player bedroll or land claim block



[*]Pregnancy:


  • When requirements are met, the female player or NPC spouse gets a "pregnancy" buff.
  • Pregnancy lasts one (1) in-game week.

[*]Birth:


  • At the end of the 7th day, results in a single offspring (75% chance), twins (10% chance), triplets (5%) chance or a miscarriage (10% chance).


    Major bleed debuffs, infections, and other serious injuries/illness can greatly increase miscarriage chances.

[*]Offspring will be spawned into the nearest available crib (mod item) within range.



[*]Life Stages:


  • Infant: 3 days


    Cannot leave crib
  • Requires milk or baby formula (modded items) to be placed in inventory


    Will be taken into protective custody if without food for 24 hours.
  • Drinking spoiled milk or spoiled baby formula will make them sick, increasing food/water drain.


    Consistently eating spoiled milk/formula can lead to health loss / death.





[*]Child: 7 days


  • Can be commanded like any hired NPC.
  • Can be put to work on simple tasks.
  • Cannot fight or defend themselves.
  • Cannot be assigned to a residence or workplace.
  • Requires food (any) and water to be placed in inventory or NPC Provisions Box.


    Will be taken into protective custody if without food and/or water for 24 hours.
  • Drinking murky water or eating bad food can make them sick, increasing food/water drain and preventing them from completing tasks.



[*]Teenager: 7 days


  • Can be commanded like an hired NPC.
  • Can be put to work on simple and more complex tasks.
  • Can fight and defend themselves or any attacked family or party member (NPC human, NPC pet, or Player).
  • Cannot be assigned to a residence or workplace.
  • Cannot loot buildings on their own.
  • Requires food (any) and water to be placed in inventory or NPC Provisions Box.


    Will be taken into protective custody if without food and/or water for 24 hours.
  • Drinking murky water or eating bad food can make them sick, increasing food/water drain and preventing them from completing tasks.



[*]Adult: Indefintely


  • Can be commanded like a hired NPC until they move out.
  • Can be put to work on simple or more complex tasks.
  • Can loot buildings on their own.
  • Requires food (any) and water to be placed in inventory or NPC Provisions Box.


    Will starve if without food and/or water for 48 hours
  • Drinking murky water or eating bad food can make them sick, increasing food/water drain and preventing them from completing tasks.

[*]Can be assigned to a residence.


  • Will no longer require food / water if assigned to a residence.

[*]Can be assigned to a profession and workplace (requires assignment to a residence first).

[*]Can be partnered with another NPC to start a family.



[*]As of right now, I have no plans of adding death by old age, although I might add elder as an age option.



[*]Child Services:


  • While the actual service went up in smoke in the apocalypse, the community still looks out for each other. Orphaned, abandoned, or starved children are put in the protection of the nearest occupied church (if any) or trader.
  • Adoption:


    You can adopt children from an occupied church of varying ages, although the older they are, the more expensive they are to adopt.

[*]Removing Children from Household:


  • Dismissed


    You can manually "dismiss" (put up for adoption) a child from your household.
  • Once you put a child up for adoption, you cannot get them back!

[*]Starved Debuff


  • You will still get "reported" by the community if you have not fed your kid in more than 24 hours.
  • Starved children will get taken away and put in the care of a nearby occupied church (if any) or trader.
  • You can appeal and pay a hefty fine to get your child back.



















  • Create In-Depth Professions:


    The Workplace


    NPCs will be split based on profession type. The following is a WIP and not set in stone.


    Medical:


    Doctor - trader / quest giver
  • Nurse - hired hand / fighter (healer?)

[*]Business Person:


  • General Merchant - trader / quest giver
  • Hunter - trader / quest giver (Savage Country)

[*]Military (no faction):


  • Captain - trader / quest giver
  • Mechanic (Army) - trader / quest giver
  • Medic - trader / quest giver
  • Pilot - trader / quest giver
  • Soldier - hired fighter

[*]Specialized Jobs:


  • Assassin - hired fighter
  • Barkeeper - trader / quest giver
  • Chef - trader / quest giver
  • Chemist - trader / quest giver (Shamway)
  • Engineer - trader / quest giver
  • Farmer - trader / quest giver
  • Firefighter - trader / quest giver
  • Gunsmith - trader / quest giver (Shotgun Messiah)
  • Janitor - hired fighter
  • Mechanic (general) - trader / quest giver
  • Ranger - hired fighter
  • Security Guard - hired fighter
  • Veterinarian - trader / quest giver



[*]Profession Requirements:


  • Each profession type has specific POIs that qualify as a workplace, although using Blocks can also work provided the NPCs have access to profession-related workstations.


    Ex: Doctor might need a cleared Hospital, Clinic, or Pop-N-Pills POI, but can also be assigned to a Workplace Block that has accessible medical stations (like a gurney or medical cabinet).

[*]Each profession has at least one "main" workstation that they need in order to start working, but having multiple workstations allow for NPCs to route between them, making it appear as if they are working.


  • Ex: Doctor - needs gurney, but can route between gurney, IV stand, and medical cabinet.



[*]Unhirable NPCs:


  • Certain NPCs will have trading menus (Farmers, Doctors, etc) and cannot be hired, but will instead only show trade options after completing their "Need a Workplace" and "Need a House" quests.

[*]Hireable NPCs:


  • Other NPCs can be hired outright (Farmhand, Nurse, etc) without completing any quests as long as you can find them. They also are "filler" professions to make workplaces more lively, but do not have any trade menus.











I know it's a huge project to undertake, but is it possible between what's available in the game and the NPC mod?

TLDR;

  • Am I allowed to create a personal use expansion utilizing this mod? If so, is there a template or setup I can use?
  • Is it possible to create children (legit kids) NPCs?
  • Is it possible to create relationship values that change based on interaction and dialogue responses?
  • Is it possible to adjust NPC autopathing to restrict NPCs to certain POIs (cannot leave) during the day, then autopath them back to a separate POI for the night?
  • Can NPCs be adjusted to recognize certain objects as "workstations", requiring them to be accessible in order to open trade options?
  • Can you equip NPCs with armor and specific clothes?
  • Can you require NPCs to use ammo?



Not sure if this is actually doable, but I'm hoping to create(with a lot of help from the NPC Mod core) a more in-depth game play experience utilizing NPCs.

I am a bit of a perfectionist, so I might edit later on if I see a typo or want to reword an idea.

 
Last edited by a moderator:
Hey there! I was hoping to create my own Add On Expansion or even a mod for private/personal use, and was wondering how I can go about that? This would not be for public use. Feel free to skip to the bottom for the specific questions. :)
TLDR;

  • Am I allowed to create a personal use expansion utilizing this mod? If so, is there a template or setup I can use?  Yes, you may use the mod as part of new mod.  We ask that you use the "Powered by NPCCore" logo somewhere on your new starting page.
  • Is it possible to create children (legit kids) NPCs?  Yes
  • Is it possible to create relationship values that change based on interaction and dialogue responses?  Yes
  • Is it possible to adjust NPC autopathing to restrict NPCs to certain POIs (cannot leave) during the day, then autopath them back to a separate POI for the night?  Not to POIs, but they can path to other things like workstations.  There are also pathing cube to set routine paths.
  • Can NPCs be adjusted to recognize certain objects as "workstations", requiring them to be accessible in order to open trade options?  Yes to the first part, not sure about the later part.
  • Can you equip NPCs with armor and specific clothes?  Not implemented yet but possible if you set those up in Unity.
  • Can you require NPCs to use ammo?   Maybe.  Right now ammo damage doesn't seem supported by vanilla, so damage is on the weapon used.  A system likely could be developed.

Please be aware that the core group isn't working on this mod beyond maintenance, at least until A22 and/or TFP bandits.  New features are appearing in many overhauls, but as of this time those are not yet available for inclusion to this core.  If you do develop some of the features your considering, please consider adding those to this core so others can benefit.

 
bit of a perfectionist
Mods, don't mean to take this off topic but I feel I must respond.

@LittleBoBleatMe too. And here's the rub. The more your AOI mod relies on other mods, the more frustrated you'll become. Since A18, I've had an idea for a mod such as yours. (not so similar and nowhere near as complex) I wanted to incorporate appropriate mods so as to not have to create/plagiarize them. Joel had speculated, once, A18 would be close to Beta, so I began working on it. A19 came. Mods had to be rewritten. A20 came. Same thing. Each time I had to wait to see if the mod author was going to update their mod before I could proceed. At A21 I decided to wait until Beta. I saw a little of this in xyth's reply to you.

What I envisioned was a mod. What you've envisioned is a game.

I love 7DTD and wouldn't say anything against TFP. But, the reality is you could learn Unity or go with software like GameGuru and create this game, using free models, before you'll be able to finish it as a mod. It's an absolutely fantastic idea (as was mine) but for "a bit of a perfectionist" it's gonna be as fun as drinking vinegar to create as a mod.

 
On a separate note, the Birds Pack is working superbly, with the new numbers. Is more variety possible? And, if so, what can I do to help add a few more for the next version? Do we just need more models?  Are they individually animated? Can those currently in the pack be recolored? (IE the current eagle in snow biome and recolored eagle in forest)

 
Mods, don't mean to take this off topic but I feel I must respond.

@LittleBoBleatMe too. And here's the rub. The more your AOI mod relies on other mods, the more frustrated you'll become. Since A18, I've had an idea for a mod such as yours. (not so similar and nowhere near as complex) I wanted to incorporate appropriate mods so as to not have to create/plagiarize them. Joel had speculated, once, A18 would be close to Beta, so I began working on it. A19 came. Mods had to be rewritten. A20 came. Same thing. Each time I had to wait to see if the mod author was going to update their mod before I could proceed. At A21 I decided to wait until Beta. I saw a little of this in xyth's reply to you.

What I envisioned was a mod. What you've envisioned is a game.

I love 7DTD and wouldn't say anything against TFP. But, the reality is you could learn Unity or go with software like GameGuru and create this game, using free models, before you'll be able to finish it as a mod. It's an absolutely fantastic idea (as was mine) but for "a bit of a perfectionist" it's gonna be as fun as drinking vinegar to create as a mod.
I totally understand. The more I expanded on the drawing board, the more I realized just how many features were required to pull off one of my ideas. Not that I wouldn't want to still try and create the mod (more so an overhaul I'm sure at that point). However, if A22 is going to be another rewrite yet again, I think I 'd be crushed taking the time to code out the entire thing --  just to have it be outdated by the time I'd probably finish it to a releasable point.

Still, I keep hoping there will be a mod / overhaul or even a similar game that will fill the void I'm hoping to fill with NPC rather than being required to be social with others. XD



Thank you for taking the time to answer all my questions! I've started my attempt on personalizing existing mods, but if I manage to pull it all off, it won't be before it's long outdated I'm sure. I'm not an experienced modder by any means, but I've got coding experience so I wanted to give it a try. Hence the "personal project", so I'm not getting hopes up. :)

 
On a separate note, the Birds Pack is working superbly, with the new numbers. Is more variety possible? And, if so, what can I do to help add a few more for the next version? Do we just need more models?  Are they individually animated? Can those currently in the pack be recolored? (IE the current eagle in snow biome and recolored eagle in forest)
Glad to hear it.   The birds in that pack are pretty low rez versions I used as prototypes.  I figured someone would replace that pack by now, but.    I will see what other models I have with sound files to match.  I did want to add a Boat-tailed Grackle at one point.  🙂  If the textures were edited, then making a new bird with that texture could be done in Unity and XML.   New bird models will need to rigged and have prebuilt animations for at least the flying animation.  If you dont care about closeup details, then its not hard to learn to make a simple fly animation in Unity.     

 
Last edited by a moderator:
I figured someone would replace that pack by now, but. 
A voice in my head said, "Hey! I can do that. I'll find some models and animate them." And then a picture of me holding a Tasmanian Devil in a shoe box came to mind. I had both hands clamped on the box to keep it closed. I was looking at you guys, asking "What do I do now?"😁

Nonetheless, I'll poke around.

 
Back
Top