Auto Attack For Wizzard

01/14/2015 15:11 ​Exo#16
Okay to make this clear, the multiple attack skills, like frozen spear, lighting smth, fire blow doesn't have proper values at action_castingtime, fix the values and you're done.

Quote:
Originally Posted by PortalDark View Post
so SRO goes smash bros now with auto cancel?

not gonna move/close this to see how it develops
Well not really since you can use this bug with 3 skills only, once every 3 secs (frozen cooldown)
01/16/2015 15:31 Royalblade*#17
srsly this is not that hard xD

_CharSkill table.. just remove the basic wizard attack.
_refskill set service = 0 to that attack.

Done.
01/16/2015 18:04 ​Exo#18
Quote:
Originally Posted by blablaRoyal View Post
srsly this is not that hard xD

_CharSkill table.. just remove the basic wizard attack.
_refskill set service = 0 to that attack.

Done.
-_- removing basic attack sucks, just fix the castingtime values and it should work fine. Not fair to remove the default skill for them.
06/27/2015 15:33 Midnight ™#19
It's not possible to win FW without default skill :D
so this can not be a solution
06/28/2015 12:04 ​Goofie​#20
It's not only Europeans that is affected by such a bug.

Chinese imbue is also bugged with some Herkusal skills, just saying.

Also if you de-level the Snow shield you can use it instantly again, also a funny bug.
07/03/2015 18:00 Eslam Galull#21
that Normal attack Skill . For wizard ( some players make bug with it )

and you can remove the basic attack skill from _RefCharDefault_Skill

i didnt remmber what is the SkillID .. but . creat a new wiz char , check his skills ID
07/15/2015 18:00 Legbra#22
i think you can't disable autoattack just for Wizard if you disable to all class -.-' maybe you'll find in Wizards skills maybe -.-'
02/25/2016 21:00 xxnukertube#23
anyone have the solution of this problem?
02/26/2016 04:00 Gidzy#24
just use this query
-------------
Quote:
use SRO_VT_SHARD
update _RefSkill
set Service = 0
where Basic_Code Like '%REBIRTHA_SPECIAL_A_BUFF%'
change the redline words to the skill that you want to disable..
02/26/2016 19:37 xxnukertube#25
man this a bug in all skills
09/18/2016 18:38 xxnukertube#26
??????????
09/22/2016 12:46 B13.#27
okay so the new players who picked staff gonna use there hands to get lvl up ?
removing the default skill is not the answer and Exo said just make the recast time bigger
09/25/2016 01:09 Holosco*#28
Fixed.
run the query oqe ?
Quote:
declare @acpptime int = '300'
declare @acduration int = '1500'
/***************** FEQ U WRITTEN BY SECTOR1337 *****************/
UPDATE _RefSkill
SET Action_PreparingTime = @acpptime, Action_ActionDuration = @acduration
where Basic_Code in (select Basic_Code from _RefSkill where Basic_Code like '%SKILL_EU_WIZARD_PSYCHICA_AREA_B%' and Basic_Code like '%SKILL_EU_WIZARD_COLDA_POINT_B%', and Basic_Code like '%SKILL_EU_WIZARD_FIREA_SPRAY_B%')
/***************** FEQ U WRITTEN BY SECTOR1337 *****************/
11/20/2016 14:31 FurrymarchS#29
Bug Closed

Code:
Use [SRO_VT_SHARD]

Update _RefSkill
Set Service = 0 Where Basic_Code like 'SKILL_EU_STAFF_BASE_%'  

Update _CharSkill
Set Enable = 0 Where SkillID=9944

Delete from _RefCharDefault_Skill where SkillID=9944
Bug Active

Code:
Use [SRO_VT_SHARD]

Update _RefSkill
Set Service = 1 Where Basic_Code like 'SKILL_EU_STAFF_BASE_%'  

Update _CharSkill
Set Enable = 1 Where SkillID=9944

INSERT INTO _RefCharDefault_Skill VALUES(1,9944)
Good luck
11/21/2016 13:46 blapanda#30
Quote:
Originally Posted by FurrymarchS View Post
Bug Closed

Code:
Use [SRO_VT_SHARD]

Update _RefSkill
Set Service = 0 Where Basic_Code like 'SKILL_EU_STAFF_BASE_%'  

Update _CharSkill
Set Enable = 0 Where SkillID=9944

Delete from _RefCharDefault_Skill where SkillID=9944
Bug Active

Code:
Use [SRO_VT_SHARD]

Update _RefSkill
Set Service = 1 Where Basic_Code like 'SKILL_EU_STAFF_BASE_%'  

Update _CharSkill
Set Enable = 1 Where SkillID=9944

INSERT INTO _RefCharDefault_Skill VALUES(1,9944)
Good luck
... sorry, but ... :facepalm: