So if I understand correctly:
a. Add a new field - example: orderid - to the vb_post table
b. Run a query to fill the value of orderid in ALL existing posts in the table, ordering by the date/time of the post and starting from 1 in order to avoid having orderid = 0 for existing posts
c. Change the way thread posts are retrieved so as they are sorted by this new field "orderid"
d. When merging thread B into thread A, take the last orderid of thread A(example: 71) and insert all posts from thread B starting with orderid 72
Is that correct?