Little problem with Quest: Down with Crushcog!

Hi all. I’m doing the SAI script for the quest : Down with Crushcog!

This is the script:

DELETE FROM smart_scripts WHERE entryorguid = 42849 AND source_type = 0;
DELETE FROM smart_scripts WHERE entryorguid = 4284900 AND source_type = 9;
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
(42849, 0, 0, 0, 62, 0, 100, 0, 42849, 0, 0, 0, 80, 4284900, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - On Gossip Run Script’),
(4284900, 9, 0, 0, 1, 0, 100, 0, 0, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Set npcflag 0’),
(4284900, 9, 1, 0, 1, 0, 100, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 0’),
(4284900, 9, 2, 0, 1, 0, 100, 0, 8000, 8000, 0, 0, 84, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 1’),
(4284900, 9, 3, 0, 1, 0, 100, 0, 7000, 7000, 0, 0, 84, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 2’),
(4284900, 9, 4, 0, 1, 0, 100, 0, 1000, 1000, 0, 0, 1, 0, 1000, 0, 0, 0, 0, 10, 146138, 42852, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 0 NPC 42852’),
(4284900, 9, 5, 0, 1, 0, 100, 0, 1000, 1000, 0, 0, 53, 0, 428520, 0, 0, 0, 0, 10, 146138, 42852, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Start WP NPC 42852’),
(4284900, 9, 6, 0, 1, 0, 100, 0, 1500, 1500, 0, 0, 53, 0, 428490, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Start WP NPC 42852’);

I’ve a little problem, when npc (42852) speak, he must start his waypoint (428520), but I don’t know how to do it.

The npc speak with this line

(4284900, 9, 4, 0, 1, 0, 100, 0, 1000, 1000, 0, 0, 1, 0, 1000, 0, 0, 0, 0, 10, 146138, 42852, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 0 NPC 42852’),

And he must start the waypoint with this

(4284900, 9, 5, 0, 1, 0, 100, 0, 1000, 1000, 0, 0, 53, 0, 428520, 0, 0, 0, 0, 10, 146138, 42852, 0, 0, 0, 0, 0, ‘Down with Crushcog! - Speak 0 NPC 42852’),
But doesn’t work because with this line the NPC (42849) start the waypoints (428520), I tried with the SMART_EVENT_TEXT_OVER but it doesn’t work, could someone help me please?

Thanks you, goodbye.

New info. I think that SMART_EVENT_TEXT_OVER does not works. Because with 2 scripts it does not to anything.

text over does work if you use it correctly… does not work inside action_timed_scripts and wasnt designed to.

SMART_EVENT_TEXT_OVER = 52

Oh ok, thanks you.