Hi Guys,
I have one small Problem, i wanna do from this:
This here:
I wanna export all "7509" queries in One file... this will the best thing, i think...
I did this here:
It will delete all things, and leave all "7509" queries...
But that didn't work right...
Because, something like:
Something like that?
But it will be nice, if the queries before "IMPORT" ends with ";" and not ","
And that the script don't erase the imports...
Can anyone help me?
Cheers
I have one small Problem, i wanna do from this:
Code: Select all
....
.......
(7506,5,7744,0,0),
(7506,6,1784,0,0);
INSERT INTO `character_action` (`guid`,`button`,`action`,`type`,`misc`) VALUES
(7506,11,4604,128,0),
(7507,11,4540,128,0),
(7509,0,2457,0,0),
(7509,3,1,64,0),
(7509,12,7384,0,0),
.......
....
(8558,0,22,5948875,4496);
INSERT INTO `character_inventory` (`guid`,`bag`,`slot`,`item`,`item_template`) VALUES
(7509,0,22,5948946,5439),
(8629,0,26,5949029,2187),
......
...
Code: Select all
INSERT INTO `character_action` (`guid`,`button`,`action`,`type`,`misc`) VALUES
(7509,0,2457,0,0),
(7509,3,1,64,0),
(7509,12,7384,0,0);
INSERT INTO `character_inventory` (`guid`,`bag`,`slot`,`item`,`item_template`) VALUES
(7509,0,22,5948946,5439),
I did this here:
Code: Select all
HexOff
Find "(7509,"
Key END
StartSelect
Find "(7509,"
Key HOME
EndSelect
Key DEL
"
"
But that didn't work right...
Because, something like:
Code: Select all
Find "(7509,"
SelectLine
CopyToClipboard (dunno) Cut?
NewFile
Paste
But it will be nice, if the queries before "IMPORT" ends with ";" and not ","
And that the script don't erase the imports...
Can anyone help me?
Cheers