[WIP] Fix Quest 11468 "Falcon Versus Hawk"

[CODE]-- Fix Quest 11468 “Falcon Versus Hawk”
– Fjord Hawk SAI
SET @ENTRY := 24747; – NPC entry
SET @SPELL1 := 44407; – Hawk Hunting
SET @SPELL2 := 44408; – Hawk Hunting
UPDATE creature_template SET AIName=‘SmartAI’, ScriptName=‘’ WHERE entry=@ENTRY;
DELETE FROM creature_ai_scripts WHERE creature_id=@ENTRY;
DELETE FROM smart_scripts WHERE source_type=0 AND entryorguid=@ENTRY;
INSERT INTO smart_scripts (entryorguid,source_type,id,link,event_type,event_phase_mask,event_chance,event_flags,event_param1,event_param2,event_param3,event_param4,action_type,action_param1,action_param2,action_param3,action_param4,action_param5,action_param6,target_type,target_param1,target_param2,target_param3,target_x,target_y,target_z,target_o,comment) VALUES
(@ENTRY,0,0,1,8,0,100,0,@SPELL1,0,0,0,11,@SPELL2,0,0,0,0,0,7,0,0,0,0,0,0,0, ‘Fjord Hawk - On Spellhit - Cast spell on invoker’),
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0, ‘Fjord Hawk - On Spellhit - Despawn’);
– Fix condition for item 34121 to only target Fjord Hawk
DELETE FROM conditions WHERE SourceTypeOrReferenceId=18 AND SourceEntry=34121;
INSERT INTO conditions (SourceTypeOrReferenceId,SourceGroup,SourceEntry,ElseGroup,ConditionTypeOrReference,ConditionValue1,ConditionValue2,ConditionValue3,ErrorTextId,ScriptName,Comment) VALUES
(18,0,34121,0,24,1,@ENTRY,0,63,‘’,‘Spell Hawk Hunting targets only Fjord Turkey’);[/sql]

Spell 44408 needs work, needs to trigger an unknown spell to make near Fjord Hawk to attack the envoker.

[/CODE]