[Complete] Free Your Mind

[CODE]SET @SPELL := 29071;
SET @VILE := 29769;
SET @LADY := 29770;
SET @LEAPER := 29840;
UPDATE creature_template SET AIName = ‘SmartAI’ WHERE entry IN (@VILE, @LADY, @LEAPER);
DELETE FROM smart_scripts WHERE entryorguid IN (@VILE, @LADY, @LEAPER);
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
(@VILE,0,0,0,8,0,100,0x01,@SPELL,0,0,0,33,29845,0,0,0,0,0,7,0,0,0,0,0,0,0,‘The Vile - On spell hit - Give kill credit’),
(@LADY,0,0,0,8,0,100,0x01,@SPELL,0,0,0,33,29846,0,0,0,0,0,7,0,0,0,0,0,0,0,‘Lady Nightswood - On spell hit - Give kill credit’),
(@LEAPER,0,0,0,8,0,100,0x01,@SPELL,0,0,0,33,29847,0,0,0,0,0,7,0,0,0,0,0,0,0, ‘The Leaper - On spell hit - Give kill credit’);

DELETE FROM conditions WHERE SourceTypeOrReferenceId=13 AND SourceEntry=29070;
INSERT INTO conditions (SourceTypeOrReferenceId,SourceGroup,SourceEntry,ElseGroup,ConditionTypeOrReference,ConditionValue1,ConditionValue2,ConditionValue3,ErrorTextId,ScriptName,Comment) VALUES
(13,0,29070,0,18,2,29769,0,0,‘’,‘Sovereign Rod can target only dead Vile’),
(13,0,29070,0,18,2,29770,0,0,‘’,‘Sovereign Rod can target only dead Lady Nightswood’),
(13,0,29070,0,18,2,29840,0,0,‘’,‘Sovereign Rod can target only dead The Leaper’);[/sql][/CODE]