[Problem] Auto Attack [An Unknown Skill]

06/03/2015 23:50 MissinGDeaTh#1
i'v reseted the players skill using this query
PHP Code:
DELETE [dbo].[_CharSkillWHERE [SkillID] > '2' and SkillID<'40'
DELETE [dbo].[_CharSkillWHERE [SkillID] > '40' and SkillID<'70'
DELETE [dbo].[_CharSkillWHERE [SkillID] > '70' 
then used this
PHP Code:
update _ClientConfig
set Data 
'0' 
no whenever someone uses auto attack it gives this error

[Only registered and activated users can see links. Click Here To Register...]

any help maybe ?
06/04/2015 00:03 ​Exo#2
You deleted the default skills along with the other skills. Probably wrong ID ranges.
06/04/2015 00:06 MissinGDeaTh#3
Quote:
Originally Posted by ​Exo View Post
You deleted the default skills along with the other skills. Probably wrong ID ranges.
is there's any way i can fix this ?!
06/05/2015 08:29 blapanda#4
Try it on the smart way, if no one replies here:
Create a new lv 1 character of each race, get to your database, expand your shard db, open your char skill table, look for the latest 2 newest IDs. You will figure out which race has which standard attack skills.

Just think logically. There must be at 4 for Chinese, a bit more for Europeans :)
06/05/2015 12:47 MissinGDeaTh#5
well, i did that already, i have to figure out a way to add the lost skills in the already created chars !
06/06/2015 07:07 Eslam Galull#6
1 sec im pretty sure i did smth to fix that major before .. lemme search in ma files and i will back

INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 1,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 8419,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 8420,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 8421,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 9354,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 9355,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 9944,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 10625,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 11162,1)
INSERT INTO _CharSkill (CharID, SkillID, Enable)
VALUES (@CharID, 11526,1)