Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Low Spawn end respawn mob!!!!

Newbie Spellweaver
Joined
Jan 14, 2007
Messages
7
Reaction score
0
hello everyone very few mobs spawn and resurrect slowly. How to configure tell me I tried everything
SRO[2023-07-06 14-26-24]_42 - Low Spawn end respawn mob!!!! - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jun 16, 2012
Messages
20
Reaction score
0
Mob density is related on gameserver quantity, each gameserver can handle up to 50k entities, the more areas you have open on one gamesever fewer mobs can be seen overall, thats fixable using 2x game server or more.
And the spawn rate can be changed using this guide
 
Upvote 0
Experienced Elementalist
Joined
Mar 30, 2015
Messages
222
Reaction score
44
hello everyone very few mobs spawn and resurrect slowly. How to configure tell me I tried everything
View attachment 238252

You can use my query its simple
edit in line *CodeName128 LIKE 'MOB_CH%' --Mob code Region*
'MOB_CH%'
and edit 25 to any mob count that you want ps its per spawn also example mangyang have 20 spawn so this will be 20x25
'dwMaxTotalCount = 25'



begin
Update [SRO_VT_SHARD].[dbo].[Tab_RefNest]
Set dwDelayTimeMin = 1, dwDelayTimeMax = 2, nRadius = 500, nGenerateRadius = 500, dwMaxTotalCount = 25
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_CH%' --Mob code Region
and CodeName128 not LIKE 'MOB%STRONG%'
and CodeName128 not LIKE 'MOB%QINSHITRAP%'
and CodeName128 not LIKE 'MOB%SEALSTONE%'
and CodeName128 not LIKE 'MOB%EV%'
and CodeName128 not LIKE 'MOB%HUNTER_NPC%'
and CodeName128 not LIKE 'MOB%THIEF_NPC%'
and Rarity Like '0'
) )
end
 
Upvote 0
Back
Top