I am sure that I answered on such a question few times in past...
here is example of one of my old answer:
[Only registered and activated users can see links. Click Here To Register...]
and here the solution again from it:
this one to clear Old messages:
Code:
delete from cq_action where id >= 1000001 and id <= 1000007;
And this one to put on server new message:
Code:
INSERT INTO `cq_action` (`id`, `id_next`, `id_nextfail`, `type`, `data`, `param`) VALUES
(1000001, 1000002, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000002, 1000003, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000003, 1000004, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000004, 1000005, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000005, 1000006, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000006, 1000007, 0000, 0130, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]'),
(1000007, 3911650, 0000, 0131, 0, '[COLOR="DarkGreen"]~www.demons-online.com~Text~Here~[/COLOR]');
And of course inside Green places you putting your own messages ;)
And small advice to this. Since in last months year there were many DBs released ... just check first your actions under provided here IDs .. so you will be sure under DB you using there are no other IDs... But I guess this should be proper ;)
regards