• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

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
615
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