Issue Information
-
#007369
-
0 - None Assigned
-
Confirmed
Issue Confirmations
-
Yes (1)No (1)
When mounting on a Warg and then use the skill to invoke again appears another.
i can confirm this.
changed status to: Confirmed
only group has skill_unconditional permission can use skill when mounting on a Warg
I agree..so do we still need to fix this? normal char can't do this..only group has skill_unconditional permission can use skill when mounting on a Warg
bump
I agree..so do we still need to fix this? normal char can't do this..
only group has skill_unconditional permission can use skill when mounting on a Warg
I don't think so, since there are for sure more skills that behaves strangely because of the skill_unconditional permission, so it should be used just for GM people, if they don't want "bugs", just create a new permission according to their liking
I find this in skill.c and make a custom modification
case RA_WUGMASTERY: if( sd ) { if( !pc_iswug(sd) ) pc->setoption(sd,sd->sc.option|OPTION_WUG); else pc->setoption(sd,sd->sc.option&~OPTION_WUG); clif->skill_nodamage(src,bl,skill_id,skill_lv,1); } break;change to
case RA_WUGMASTERY: if( sd ) { if( !pc_iswug(sd) && !pc_isridingwug(sd)) pc->setoption(sd,sd->sc.option|OPTION_WUG); else if(!pc_isridingwug(sd)) pc->setoption(sd,sd->sc.option&~OPTION_WUG) clif->skill_nodamage(src,bl,skill_id,skill_lv,1); } break;
Edited by Angelmelody, 02 March 2014 - 05:24 AM.