I don't get this but i will figure it out. thanks.
In trunk/src/map/skill.c
Find those line and remove or comment (//) that lines.
And it should be looking like this
if( battle_config.autospell_check_range &&
!battle_check_range(src, tbl, skill_get_range2(src, skill,skill_lv) + (skill == RG_CLOSECONFINE?0:1)) )
continue;
// if (skill == AS_SONICBLOW)
// pc_stop_attack(sd); //Special case, Sonic Blow autospell should stop the player attacking.
// else
if (skill == PF_SPIDERWEB) //Special case, due to its nature of coding.
type = CAST_GROUND;
sd->state.autocast = 1;
skill_consume_requirement(sd,skill,skill_lv,1);
skill_toggle_magicpower(src, skill);
switch (type) {
or this
if( battle_config.autospell_check_range &&
!battle_check_range(src, tbl, skill_get_range2(src, skill,skill_lv) + (skill == RG_CLOSECONFINE?0:1)) )
continue;
if (skill == PF_SPIDERWEB) //Special case, due to its nature of coding.
type = CAST_GROUND;
sd->state.autocast = 1;
skill_consume_requirement(sd,skill,skill_lv,1);
skill_toggle_magicpower(src, skill);
switch (type) {
And don't forget to re-compile your server.
Correct me if I'm wrong.