What do you mean by saying "pet"? Mobs? Mercenaries? What?
You can disable anything with the query below:
PHP Code:
UPDATE SRO_VT_SHARD.dbo.RefObjCommon SET service = 0 where CodeName128 = 'PET_OR_WHAT_EVER'
If you're meaning to the mobs from the fortress war like tai sui,
execute the query below:
PHP Code:
UPDATE SRO_VT_SHARD.dbo.RefObjCommon SET service = 0 where CodeName128 LIKE '%MOB_FW%'
If it's about the mercenaries, use the query below:
PHP Code:
UPDATE SRO_VT_SHARD.dbo.RefObjCommon SET service = 0 where CodeName128 LIKE '%Guild_%' AND CodeName128 LIKE '%soldier%'
Don't forget to updadte the client as well ( server_dep/silkroad/textdata/itemdataXXXXX.txt ).
Good Luck