I've been working on scripting a few small parts of CoT:Strat (I know the forum rules say no WotLK but the exact same problem happens on regular BC emu)
I've been trying to get the Arthas/Uther/Jaina conversation, and i'm using the Jaina from hyjal since she's friendly to A and H, doesnt have <Ruler of Theramore> over her head, she's the same model, and doenst have to fight at all. The problem is that she doesnt trigger script events.
I've been through her database records comparing her to theramore Jaina and trying to make her as similar as possible, but regardless of what i tried she still didnt trigger script events, although her theramore version did.
I've been working for the past couple of hours in northshire with the pair of them, spawning hogger in between them and trying to get the following test script to work but no dice. Theramore Jaina triggers events, Hyjal Jaina doesnt.
Can anyone help me fix Jaina please?Code:function Jaina_OnCombat(Jaina) Jaina:SendChatMessage(12, 0, "have at thee hogger!") print "test" end RegisterUnitEvent(17772, 1, "Jaina_OnCombat") function Jaina2_OnCombat(Jaina) Jaina:SendChatMessage(12, 0, "die beast!") print "test2" end RegisterUnitEvent(4968, 1, "Jaina2_OnCombat")