because edited the skills of Star Gladiator to use parrying with Book weapon
added this soul link mod for LK
skill.c
// If linked, knights are able to use parrying with one handed swords (type 2)
if( require.weapon && !pc_check_weapontype(sd,require.weapon) && ( skill_id == LK_PARRYING && !sd->sc.data[SC_SOULLINK] && !pc_check_weapontype(sd,2) )) {
clif->skill_fail(sd,skill_id,USESKILL_FAIL_THIS_WEAPON,0);
return 0; }
pc.c
// If linked, knights are able to use parrying with one handed swords (type 2) PARRY
if( scw_list[i] == SC_PARRYING && sd->sc.data[SC_SOULLINK] && sd->sc.data[SC_SOULLINK]->val2 == SL_KNIGHT && (!pc_check_weapontype(sd,skill->get_weapontype(status->sc2skill(scw_list[i]))) && !pc_check_weapontype(sd,2))) {
status_change_end(&sd->bl, scw_list[i], INVALID_TIMER);
continue; // We don't want to fall under the next check
}
well the parry works with 1 hand if get soul linked but i can use parry with dagger and without soul link buff
help
why i can use parry with dagger and,
two hand quicken ( how to make it u can use two hand quicken when you got soul link with one hand sword)
skill_require_db.txt
made it 3:15
because edited the skills of Star Gladiator to use parrying with Book weapon
added this soul link mod for LK
skill.c
pc.c
well the parry works with 1 hand if get soul linked but i can use parry with dagger and without soul link buff
Share this post
Link to post
Share on other sites