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!

[SQL] Query to Reset Player Skill

Experienced Elementalist
Joined
Jul 1, 2012
Messages
215
Reaction score
83
for Reset All Char;

Dont Reset Client DATA

:S

Any Can help me ?
 
Junior Spellweaver
Joined
Sep 21, 2011
Messages
194
Reaction score
35
for Reset All Char;

Dont Reset Client DATA

:S

Any Can help me ?

Updated. GL

Code:
USE [SRO_VT_SHARD]
GO
--Made by ModGift for RaGeZoNe 

-- edit by InPanic Kev --
update _ClientConfig
set Data = '0'
where CharID = @CharID
-- edit by InPanic Kev --

DELETE FROM [dbo].[_CharSkill]
      WHERE  SKillID NOT LIKE '1' and  SKillID NOT LIKE '2' and  SKillID NOT LIKE '40'
	  and  SKillID NOT LIKE '70' and  SKillID NOT LIKE '8421' and  SKillID NOT LIKE '8419'
	  and  SKillID NOT LIKE '8420' and  SKillID NOT LIKE '9354' and  SKillID NOT LIKE '9355'
	  and  SKillID NOT LIKE '9944' and  SKillID NOT LIKE '10625' and  SKillID NOT LIKE '11162'
	  and  SKillID NOT LIKE '11526'
GO 

UPDATE [dbo].[_CharSkillMastery]
   SET 
      [Level] = '0'
 
Back
Top