Quote:
Originally Posted by Vxo
You can use this one.
PHP Code:
/****** Object: Query [Increase Mob Spawn(one by one)] Owner : AETA GAMING NETWORK */ Update [SRO_VT_SHARD].[dbo].[Tab_RefNest] Set dwMaxTotalCount = 3 Where dwTacticsID IN (Select dwTacticsID FROM [SRO_VT_SHARD].[dbo].[Tab_RefTactics] Where dwObjID IN (SELECT ID FROM SRO_VT_SHARD.dbo._RefObjCommon Where CodeName128 LIKE 'MOB_SD_CAMELSPIDER') ) /****** Object: Query [Increase Mob Spawn(one by one)] Owner : AETA GAMING NETWORK */
|
:facepalm: :facepalm: :facepalm:
@OP
If you have second gameserver, then change certain regions assocserver to 2 (from _Refregionbindassocserver) and restart your gs/sm.
If you want to increase the mobs count in those regions, then use the query below.
Quote:
UPDATE TRN SET DWMAXTOTALCOUNT+=3 /*You can change 3 to any value you want.*/ FROM TAB_REFNEST TRN JOIN _RefRegion RR
on RR.wRegionID = TRN.nregiondbid --nregiondbid might be a wrong column name, edit it.
JOIN _RefRegionBindAssocServer rbs
ON RBS.AreaName = RR.ContinentName
WHERE RBS.AssocServer = 2
|