Problems with "Saving the Youngs"

Hello Guys,

i have a problem with the quest “Saving the Young”(Id=24623).

How can i make the Bloodtalon Whistle www.wowhead.com/item=52283/bloodtalon-whistle counting the quest?

Where in the Database do I find the Quest Item and where the Spell?

Thanks for now

use sai to when the player use that item near the lost raptor they give credit for that quest , take an example and work about it!

– Lost Bloodtalon Hatchling SAI
SET @ENTRY := 39157;
UPDATE creature_template SET AIName=“SmartAI” WHERE entry=@ENTRY;
DELETE FROM smart_scripts WHERE entryorguid=@ENTRY AND source_type=0;
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,70874,0,1000,2000,41,60000,0,0,0,0,0,1,0,0,0,0,0,0,0,“On spellhit, Set despawn timer to 1 min (for reset)”),
(@ENTRY,0,1,2,61,0,100,0,0,0,0,0,29,2,0,0,0,0,0,7,0,0,0,0,0,0,0,“Start - Follow Player”),
(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,33,39157,0,0,0,0,0,7,0,0,0,0,0,0,0,“On spellhit - Quest Credit 1”);

the effect of the spell 70874 triggered by item Bloodtalon Whistle is 15 yards so when you use the item all lost raptor on 15 yards of range start follow you and give credit for the quest

i hope that help you!!!