Beret - Jun 15, 2013 2:33
					
				
				
					When mounting on a Warg and then use the skill to invoke again appears another.
[img]http://i42.tinypic.com/mcqlx5.png[/img]
				
							 
									
				
					
						bgamez23 - Jun 15, 2013 4:29
					
				
				
					i can confirm this.
				
							 
									
				
					
						Angelmelody - Jun 15, 2013 11:26
					
				
				
					only group has skill_unconditional  permission can  use skill when mounting on a Warg
				
							 
									
				
					
						malufett - Jun 15, 2013 11:56
					
				
				
					[quote name="Angelmelody" timestamp="1371295564"]
only group has skill_unconditional permission can use skill when mounting on a Warg[/quote]
I agree..so do we still need to fix this? normal char can't do this..
:meow:
				
							 
									
				
					
						bgamez23 - Aug 2, 2013 5:51
					
				
				
					bump
				
							 
									
				
					
						evilpuncker - Feb 24, 2014 5:35
					
				
				
					[quote name="malufett" timestamp="1371297372"][quote name="Angelmelody" timestamp="1371295564"]
only group has skill_unconditional permission can use skill when mounting on a Warg[/quote]I agree..so do we still need to fix this? normal char can't do this..
 :meow:[/quote]
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 :)
				
							 
									
				
					
						Angelmelody - Mar 2, 2014 5:18
					
				
				
					I find this in skill.c and make a custom modification[code=auto:0]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;
[/code]change to[code=auto:0]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;
[/code]
				
								
					
						This post has been edited by
						Angelmelody
						on Mar 2, 2014 5:24