Page 1 of 1

not exactly a distro fix, but a consistency hint

Posted: Wed Aug 30, 2006 4:17 pm
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

Posted: Wed Aug 30, 2006 9:57 pm
by Austin
updated.