Haven't tested but this should work.
Quote:
USE SRO_VT_SHARD
update _RefDropItemAssign set Service = 0
from _RefDropItemAssign Drops
left join _RefObjCommon Objects
ON (Drops.RefItemID = Objects.ID)
WHERE CodeName128 like '%ITEM_EU_%'
|
WARNING!!!
I haven't tested this, after you disable the services the gs might crash while launching.
Make sure to backup your database before testing it, if GS doesn't run after using this query you can restore the old state by running this one.
Quote:
USE SRO_VT_SHARD
update _RefDropItemAssign set Service = 1
from _RefDropItemAssign Drops
left join _RefObjCommon Objects
ON (Drops.RefItemID = Objects.ID)
WHERE CodeName128 like '%ITEM_EU_%'
|
and again, please note I haven't tested this!
Alternatively you can disable only the items which contains degree information this way you will make sure you won't disable quest and other items that contain ITEM_EU_.
Example
Quote:
USE SRO_VT_SHARD
update _RefDropItemAssign set Service = 0
from _RefDropItemAssign Drops
left join _RefObjCommon Objects
ON (Drops.RefItemID = Objects.ID)
WHERE CodeName128 like '%ITEM_EU_%_10_%'
|
Other than that disable the EU maps from RefRegionBindassoc table.