Enemy AI |
||
A sequence of examples that start with simple enemy AI and introduce new features one at a time. [More] |
To download this demo for your Linux/Mac installation, enter this on your command line:
DreamDownload byond://Forum_account.EnemyAI##version=4 Emulator users, in the BYOND pager go to File | Open Location and enter this URL:byond://Forum_account.EnemyAI##version=4 |
This isn't exactly a demo. It's a sequence of examples that start with simple enemy AI and show how to add features of increasing complexity.
The package includes 15 examples. Each example shows how to implement a distinct feature useful for enemy AI. The concepts are explained in detail. The examples cover things like: • How to manage AI loops efficiently with thousands of mobs. (NEW!) • How to create mobs that attack only when provoked and mobs that don't. • How to use a simple state machine to create mobs that have a chance to run away when they are weak. • How to create mobs that call for help so their allies will join them in combat. • How to evaluate the utility of a situation and various actions to determine which action yields the largest increase in utility. • How to couple utility functions with state machines to create mobs that can decide what action to perform and execute a multi-step action. • How to make mobs run away to good hiding spots when they get weak. • How to organize your AI code so that it doesn't get out of hand too quickly. The package also includes ten exercises you can try to test your understanding of the concepts (complete solutions are provided for three of them). Check out this blog post for instructions on how to run the examples. |
Ganite: (Jul 22 2015, 12:40 pm)
Thank you this helped bunches
FIREking: (Jan 9 2013, 4:44 am)
If you kill a mob right in front of a hiding space, it is possible that the mob will try to choose this hiding space to hide in. Here's some code that can make it choose the farthest away hiding spot:
ai() Phat T: (Oct 30 2012, 12:41 am)
hello there. I`m wondering if you can make tutorial how to prevent AI from walking diagonally. And how to make AI use projectile. Ty for youre respond!
Forum_account: (Jul 21 2011, 7:48 am)
Phoestre wrote:
Explains a lot if you are experienced with DM but not AI. However ai proc seems not to be efficient, still a good starting point for AI beginners. Thanks for the positive feedback! There is an example in this demo (I forget what number it is) that shows how to improve efficiency by deactivating the AI loops for mobs when a player isn't nearby. |
Copyright © 2024 BYOND Software.
All rights reserved.
Was trying to get a cleaner understanding of properly applying loops... and this sure has helped!