[Improvement] Flee Overhaul (#4407)

* Lots of flee updates primarily based on TAKPs source

* Update Values to EQEmu values.

* Add rule

* Adjustments to fear pathing

* Flee/Pathing adjustments (More TAKP code adjusted)

* updates

* Updates (Massaged functions from TAKP source)

---------

Co-authored-by: Kinglykrab <kinglykrab@gmail.com>
This commit is contained in:
Fryguy
2024-07-30 18:27:47 -04:00
committed by GitHub
parent e49ab924cc
commit 2ef959c5ed
23 changed files with 543 additions and 77 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "../client.h"
void command_fleeinfo(Client *c, const Seperator *sep)
{
if (c->GetTarget() && c->GetTarget()->IsNPC()) {
Mob* client = entity_list.GetMob(c->GetID());
if (client) {
c->GetTarget()->FleeInfo(client);
}
} else {
c->Message(Chat::Red, "Please target a NPC to use this command on.");
}
}