Yes UseIntervalValue is already set to true. This is happening with all mobs in pop. Going to try some luclin and norrath....
Ok went to ssratemple, still wearing NO GEAR, the mob would only hit once in 4-10 attacks.
So you are suggesting most or all mobs in the database have a low attack rating or accuracy? Lets have a look at the database values. Looks like all the mobs I've looked at have ATK and Accuracy equal to 0. Aggregating the database, every single mob has an ATK and Accuracy of 0. Looks like this is a PEQ problem. Anybody want to try this query on their database?
SELECT zone, max(ATK), max(Accuracy)
FROM npc_types AS nt
INNER JOIN spawnentry as se ON se.npcid=nt.id
INNER JOIN spawn2 AS s2 ON s2.spawngroupid=se.spawngroupid
GROUP BY zone;
I am going to try making changes globally to see if the server actually uses that data.
|