![]() |
|
#3
|
|||
|
From what I understand it doesn't affect the resist rate as it does whether the mob will decide to attack on resist.
There is a method "PassCharismaCheck" that occurs on resist that uses the following formula: Code:
MobR = ((((MobMR + MobLevel) / 3) / MobMaxMR()) + (RandomFloat(-10, 10) / 100.0)
CasterR = (((CasterCha + CasterLevel / 3) / CasterMaxCha) + (RandomFloat(-10, 10) / 100.0)
if(r1 < r2)
Result = true
..
if not PassCharismaCheck
AddToHateList
This is from the EQEmu source code so it may have been changed for p99. There is a similar charisma check every tick against the mob level, mr, and then charisma when charming. | ||
|
Last edited by Ropethunder; 07-17-2010 at 05:44 PM..
|
|
||
|
|