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!

Release maps for everyone, when creating char

Newbie Spellweaver
Joined
Oct 28, 2016
Messages
5
Reaction score
0
How do I release all maps when creating char? , I saw some tutorial, but I couldn't, Anyone could help me? EP8
 
Joined
Oct 10, 2007
Messages
1,772
Reaction score
187
How do I release all maps when creating char? , I saw some tutorial, but I couldn't, Anyone could help me? EP8

use these queries

update account.dbo.cabal_newchardata_table set WarpBField=2097151
update account.dbo.cabal_newchardata_table set MapsBField=2097151
update server01.dbo.cabal_character_table set WarpBField=2097151
update server01.dbo.cabal_character_table set MapsBField=2097151

CREATE TRIGGER [Maps] ON [dbo].[cabal_character_table]
FOR UPDATE AS begin
update Cabal_character_table set WarpBField=2097151,MapsBField=2097151
where Login=0
end
 
Upvote 0
Back
Top