Replace mobs from one map to another

08/15/2018 01:12 pablitto18#1
Hello everyone, does someone explain to me how to replace all the mobs of Constatinople with the mobs of Alexandria for example? or how can I do it manually
08/15/2018 03:31 ZαKuRα#2
[Only registered and activated users can see links. Click Here To Register...]
08/15/2018 23:41 Obyx#3
1st get ID of mob
Use SRO_VT_SHARD select ID from _RefObjCommon where CodeName128 like 'MOB_SD_ANUBIS'

2nd get dwTacticsID
USE [SRO_VT_SHARD]
SELECT [dwTacticsID] FROM [dbo].[Tab_RefTactics] WHERE (dwObjID LIKE 'UniqueID')

3rd get dwNestID
USE [SRO_VT_SHARD]
SELECT [dwNestID] FROM [dbo].[Tab_RefNest] WHERE (dwTacticsID LIKE 'dwTacticsID')

4th change nRegionDBID + fLocalPosX + fLocalPosY + fLocalPosZ to the Position you want
08/16/2018 22:44 pablitto18#4
Thanks you i am already solved with this query