I have Arcemu r2496 patch 3.1.x (all 3.1 patches are supported) and i have the same problem. Though i made an LUA script to fix it, all thats needed is the working spell ID that will ressurect you (tried priest res and it dont work)
Code:
function On_Gossip(unit, event, player)
unit:GossipCreateMenu(3544, player, 0)
unit:GossipMenuAddItem(2, "Resurrect Now?", 1, 0)
unit:GossipSendMenu(player)
end
function Gossip_Submenus(unit, event, player, id, intid, code)
if(intid == 999) then
unit:GossipCreateMenu(3543, player, 0)
unit:GossipMenuAddItem(2, "Resurrect Now?", 1, 0)
unit:GossipSendMenu(player)
end
if(intid == 1) then
unit:FullCastSpellOnTarget(*Need ressurect spell here*, player)
end
end
RegisterUnitGossipEvent(6491, 1, "On_Gossip")
RegisterUnitGossipEvent(6491, 2, "Gossip_Submenus")