not exactly a distro fix, but a consistency hint

Archive of posts related to former distro versions. Be aware that posts here do not refer to the current distro and may not work.
Locked
Lagoon
Grandmaster Poster
Posts: 118
Joined: Sun Mar 05, 2006 7:25 am

not exactly a distro fix, but a consistency hint

Post by Lagoon »

097\Distro\pkg\mobiles\brainAI\scripts\combat\phaseCombat.ecl
Line 25

Code: Select all

	var flee_level := AP_GetVitalMaximumValue(npc, "Hits") * (CDbl(settings["FleeLevel"])/100.0);
should be

Code: Select all

	var flee_level := NPC_GetFleeLevel(npc, settings["FleeLevel"]);
like in other scripts of the same folder
User avatar
Austin
Former Developer
Posts: 621
Joined: Wed Jan 25, 2006 2:30 am

Post by Austin »

updated.
Locked