need some help thx

03/30/2010 11:39 DestinyFate#1
is there any tools that can update my cq_itemtype action id from getting the action ids from the itemtype.dat?this guide---> [Only registered and activated users can see links. Click Here To Register...]

that guy gave this code
Code:
UPDATE cq_itemtype SET id_action = 19000100 where id >= 729317;
UPDATE cq_itemtype SET id_action = 19000200 where id >= 729318;
UPDATE cq_itemtype SET id_action = 19000300 where id >= 729319;
UPDATE cq_itemtype SET id_action = 19000400 where id >= 729320;
UPDATE cq_itemtype SET id_action = 19000500 where id >= 729321;
UPDATE cq_itemtype SET id_action = 19000600 where id >= 729322;
UPDATE cq_itemtype SET id_action = 19000700 where id >= 729323;
UPDATE cq_itemtype SET id_action = 19000800 where id >= 729324;
UPDATE cq_itemtype SET id_action = 19000900 where id >= 729325;
UPDATE cq_itemtype SET id_action = 19001000 where id >= 729326;
UPDATE cq_itemtype SET id_action = 19001100 where id >= 729327;
UPDATE cq_itemtype SET id_action = 19001200 where id >= 729328;
which practically sets all id in cq_itemtype thats over 729000 to 19m actionid,making example'god's blessing' all that not to work,and no one even correct his mistake.
03/30/2010 16:00 King_Arthur#2
Never seen one for itemtype.dat. Stuff like this should make you remember the three Bs. Backup Backup BACKUP!!
03/30/2010 18:45 .Ash#3
Quote:
Originally Posted by King_Arthur View Post
Never seen one for itemtype.dat. Stuff like this should make you remember the three Bs. Backup Backup BACKUP!!
thats only one B... one word repeated 3 times lol

On topic: Umm.. I guess you have to make another action id and update your itemtype
03/30/2010 23:38 DestinyFate#4
yea thx,forget to backup,finally done..using the new itemtype tool to add the cq_itemtype back one item at a time-.-