Here you go
This Query for down specific skill by CharName
كود PHP:
use SRO_VT_SHARD -- By Yui --
update _CharSkill set Enable = 0
where CharID =
(select charid from _Char where CharName16 = 'Yui'/*CharName*/)
and SkillID =
(select id from _RefSkill where Basic_Code = 'SKILL_CH_SWORD_CHAIN_D_1S_01' /*SkillCode*/)
This Query for down all skill by CharName
كود PHP:
use SRO_VT_SHARD -- By Yui --
update _CharSkill set Enable = 0
where CharID =
(select charid from _Char where CharName16 = 'Yui'/*CharName*/)
This Query for down specific Skill for all player
كود PHP:
use SRO_VT_SHARD -- By Yui --
update _CharSkill set Enable = 0
where SkillID =
(select id from _RefSkill where Basic_Code = 'SKILL_CH_SWORD_CHAIN_D_1S_01' /*SkillCode*/)