View Single Post
  #8  
Old 05-20-2016, 11:17 PM
cannon
Hill Giant
 
Join Date: Dec 2004
Location: Pittsburgh, PA
Posts: 128
Default

Quote:
Originally Posted by Shiny151 View Post
Indeed. That's what I'm trying to make sense of. Due to the randomness of it it's hard to pinpoint what may be going on. However, there is one other issue with clerics I noticed when I hit level 59. They continually cast Ethereal Remedy on themselves until they are at 50% mana. Once they dip below 50% they stop until they med to 50 and spam themselves again. It's almost as if they are misreading their hitpoint value and are trying to close the gap. I just hit level 60 last night and they are still doing it.
If you want a cheap fix for this. Provided your using the latest peq database for mercenaries. The merc level will still match the player level but will use the level 61 method for casting. i just narrowed down to the 7 healer and 7 caster entries for j1-j7.
Code:
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=11 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=12 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=13 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=14 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=15 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=16 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=17 AND 'clientlevel'=59;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=11 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=12 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=13 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=14 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=15 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=16 AND 'clientlevel'=60;
update 'peq'.'merc_stats' SET 'level'=61 WHERE 'merc_npc_type_id'=17 AND 'clientlevel'=60;
EDIT: So I went back into the database to narrow down the healer mercs. you can change back any that obviously dont have mana, but I notice there is from what I assume J1-J5 casters (should be 5) J1-J5 for healers (should be 5), I have what I believe is 7 entries for each caster and healer.
Reply With Quote