I've done a preliminary check of the data for Veshan's Peak from the peq DB. `npc_types.id` between 108500 -108999 will show the npcs for pre-revamp. (there's only about 19)
`peq.spawn2._condition != 2` meaning 1 are the spawn2's for classic. I am unsure how accurate the data is but, it's the most complete I could find.
The easiest way to disable the other half would be:
Code:
update `spawn2` set `enabled` = 0 where spawn2.`_condition` = 2 and spawn2.`zone` = 'veeshan';
Notice the different quotation marks.
I prefer to do it a different way but it's a little more work.
EDIT: If you don't see racnars and wurms there is something else that needs to be done. I don't recall off-hand if I had to do anything else so, report back if they aren't spawning.