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!

How to set skill data

Banned
Banned
Joined
Jul 14, 2020
Messages
420
Reaction score
35
How to set skill data same as starter skill data? Tried to create a query but it doesn't allow the where thing.

Code:
UPDATE cabal_new_character_data 
SET [SkillData]
= 0x02000100004D01014600540101480055010149009001014B007C01014E007D01014F007E010150007F010151000100010100A501016600A601016700DA01016800E101016900E201016A00E301016B00
[COLOR=#ff0000]where[/COLOR] [ClassType] = 1
 
Joined
Jul 24, 2011
Messages
806
Reaction score
614
How to set skill data same as starter skill data? Tried to create a query but it doesn't allow the where thing.

Code:
UPDATE cabal_new_character_data 
SET [SkillData]
= 0x02000100004D01014600540101480055010149009001014B007C01014E007D01014F007E010150007F010151000100010100A501016600A601016700DA01016800E101016900E201016A00E301016B00
[COLOR=#ff0000]where[/COLOR] [ClassType] = 1

That should work, maybe you missed some synthax
recommend to avoid the usage of [] in sql, even by default it using it
UPDATE xy
SET SkillData = 0x
WHERE ClassType =1

Copy the error here if not resolved..
 
Upvote 0
Back
Top