Jump to content
  • 0

Car Effect


pilopil

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

Anyone can help me about Mistress Card and Kiel card..

Some of the skills like Cloud kill, mistress card only nuliffy 1 gem stone. and for kiel card the after cast delay dont apply to some 3rd job skills..

help me please..thank in advance.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

Mistress only nullifies one gem requirement. I'm not sure about Kiel, though.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

How can i enable it to nullify even with 2 gem stones.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

Anyone can help me about Mistress Card and Kiel card..

Some of the skills like Cloud kill, mistress card only nuliffy 1 gem stone. and for kiel card the after cast delay dont apply to some 3rd job skills..

help me please..thank in advance.

on revision 16422. kiel card doesn't work anymore on some 3rd job skills.

http://rathena.org/b...rking-properly/

just remove this duplicate entry from skill.c that cause kiel card doesn't work for some 3rd job skill.

on line 9068-9077

if( sd && skill_get_cooldown(ud->skillid,ud->skilllv) > 0 ){

int i, cooldown = skill_get_cooldown(ud->skillid, ud->skilllv);

for (i = 0; i < ARRAYLENGTH(sd->skillcooldown) && sd->skillcooldown[i].id; i++) { // Increases/Decreases cooldown of a skill by item/card bonuses.

if (sd->skillcooldown[i].id == ud->skillid){

cooldown += sd->skillcooldown[i].val;

break;

}

}

skill_blockpc_start(sd, ud->skillid, cooldown);

}

save and recompile then kiel card effect will works again.

Edited by Brynner
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

Thanks Sir Brynner.. but i think i wont change the effect of kiel card for balance purpose, anyways, can u help me about the mistress card effect..i want to enable it even with 2 gemstone requirements..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

for the gemstone change this in skill.c

		{
		if( sd->special_state.no_gemstone )
		{	//Make it substract 1 gem rather than skipping the cost.
			if( --req.amount[i] < 1 )
				req.itemid[i] = 0;
		}

change it to 'req.amount <= 1' or 'req.amount < 2'

for the Kiel..if your using clients 2012 or later 2011 the client has a fixed cast delay of 100~200 milliseconds so even changing the settings in the server it won't apply and I hope you are not confuse with the animation of after-cast delay and cooldown..but I assure you its pretty working fine :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

Thank you sir! gemstone now working! by the way sir..can u help me about the mandragora howling skill..the cast delay effect wont work.. in using r16503..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

what do you mean by cast delay effect of mandragora? AFAIK it only contributes to the fixed casting..BTW are you using PRE-RE??

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

im using RE sir..like this, if youve been affected by mandragora howling it will increaseg skill casting time, em i right?

Pulls a live Mandragora from the ground which releases a wild scream that lowers the INT of nearby targets and drains their SP. Increases the fixed casting time of all skills. The chance of success is reduced by the VIT and LUK of the target.

-Increases the fixed casting time of all skills.

Edited by pilopil
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

hmm..did you consider the chance?

reduced by the VIT and LUK
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  37
  • Reputation:   0
  • Joined:  07/12/12
  • Last Seen:  

yes sir..i did consider bothh stats..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...