Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Search the Community

Showing results for tags 'artificial intelligence'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Community Boards
    • About TESA
    • TESA Community
  • Hosted Boards
    • The Enclave
    • Hosted Projects
  • Gaming Boards
    • The Elder Scrolls
    • Fallout
    • Indie Games
  • RPG Boards
    • Roleplaying

Categories

  • Showcase
    • Skyrim
    • Fallout
    • Oblivion
    • Misc
  • Exclusives
    • Skyrim
    • Fallout
    • Oblivion
    • Morrowind
    • Misc
  • Community Works
    • Skyrim
    • Oblivion
    • Fallout
    • Misc
    • Student Projects

Categories

  • ESV: Skyrim Modding
    • Creation Kit Basics
    • Level Design
    • Character Design
    • Papyrus
    • Quest Design & Dialogue
    • Graphic Artistry
    • 3D Craftworks
  • ESIV: Oblivion Modding
    • Construction Set Basics
    • Worldbuilding
    • NPCs & Radiant AI
    • Scripting
    • Questbuilding & Dialogue
    • Story & Lore
    • Texturing
    • Modeling
    • Miscellaneous
  • ESIII: Morrowind Modding
    • Tool Set Basics
    • Worldbuilding
    • NPCs
    • Scripting
    • Questbuilding
    • Texturing
    • Modeling
  • Fallout 3 Modding
    • GECK Basics
    • Worldbuilding
    • NPCs & Radiant AI
    • Scripting
    • Questbuilding & Dialogue
    • Texturing
    • Modeling
  • Gaming Guides
    • Oblivion Gaming
    • Morrowind Gaming
    • Fallout 3 Gaming
  • Miscellaneous Tutorials
  • TES Alliance HowTo Guides

Product Groups

  • VIP Memberships
  • Subscriptions

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Steam


XBox Live ID


MSN


Skype


Location


Interests

Found 2 results

  1. Greetings all! I'm pleased to announce the first in a line of mods dedicated to improving the player experience of Skyrim through improved Artificial Intelligence. The Nexus download page can be found here: http://skyrim.nexusm...om/mods/41364/? For a preview of the new features, and a general review of gaming AI, please refer to the following video: This mod file contains a small combat-test dungeon with a handful of opponents. Players are encouraged to try it out and share their reflections and experiences. Note that there is no map-based entry point -- to enter the arena, open the Console menu (using the ~ key) and type: coc NewAITestDungeon03 Also note that enemies will auto-resurrect after 45 seconds, so there is no need to re-load. Feedback on the AI changes is welcome as I prepare a set of full dungeons. I look forward to hearing from you!
  2. Updated 2013-08-01 Solved -- used the below methodology, but tied a Fear spell to the Enemy Trigger instead of trying to force the execution of an AI Package or other pathed behavior. Will post scripts and videos soon. ----------------------- Hi all! I'm working on a mod that's mainly for modders -- that is, I want to make a new toolset that will help the modding community create more sophisticated enemy AI a little easier. Less work, more payoff. While I love Skyrim, I noticed that most humanoid NPC's have some very basic, predictable behaviors -- melee folks rush, and archers / mages all hang around the exact same distance away. The game does some nice basic stuff with cover, but there's very little variance unless the modder goes in and makes extensive, explicit changes to behavior using a whole bunch of Packages with conditionals, etc.. That is very time consuming. I want to change that. Super quick synopsis of my tool: I've built a logging system that automatically clusters where all player and enemy hits take place in a dungeon -- i.e. when the player is within region A, s/he tends to deal a lot of damage to enemies in regions B, C, and D, etc.. The size and coordinates of each region are automatically calculated, honed down from hundreds or thousands of data points. The final outcome I want is: When the player enters Region A, the NPC's know to FleeFrom Regions B, C, and D. This will force the player to move around more, as the NPC's won't be "suckers" and all sit and die in the same spot. Ideally, I want to make my system translate the clustered region information into scripts automatically, so there is absolutely minimal work on the part of the developer. I would very much appreciate advice that would lead to the most efficient means of achieving the above goal. I tried the following methodology, but it doesn't work thus far, and I believe it's not optimal: I've made a dungeon with Triggers for each Player and Enemy Region -- I tried to set it up so when the player enters Region A, it would change a value in a Script attached to Trigger Regions B, C, and D, etc.. Each NPC would also have a new Script attached, which would just create two new Properties -- a Boolean for "ShouldFlee", and an ObjectReference for the Object to FleeFrom(). Default Boolean value is False. If an NPC entered Region B, C, or D while the player is in Region A, a Script attached to the Trigger in Regions B, C, and D would do three things: 1. Set the NPC Script's Boolean Property to True. 2. Set the NPC Script's ObjectReference Property to itself (the Trigger Box). 3. Force a re-evaluation of the NPC's Package Stack. There would be a single conditional in the Package Stack to check the Script Boolean Property, and then flee from the ObjectReference if the Boolean is True. Again, I'm not quite sure if this is the most efficient means of executing what I'd like. It depends a lot on Triggered Events (which is good...), but I haven't been able to get the code to work thus far. The Package Conditional fails to allow me to try and GetScriptVariable from my NPC, even when it has an explicit name / ID. The only other alternative which I can think of at the moment is making a HUGE series of Package Conditionals that emulate these Trigger Boxes -- that is, they would constantly check the Player and NPC positions. However, I believe that would be a HUGE hindrance to performance, since GetPos would likely be checked every "tick" of the engine. Again, I want to make my system translate the clustered region information into scripts automatically, so there is absolutely minimal work on the part of the developer -- so, if there's a way to get most of this behavior out of some Scripts with minimal use of the GUI, all the better! Your sage advice much appreciated!
×
×
  • Create New...