Jump to content
  • 0

Question

Posted (edited)

How can i edit the creator demostration skill for it wont hit the player thats casting the skill?

How can i add max cap damages on all OP skills?

Mangum break doesnt enchant the player with fire property. How can i fix it?

How can i remove using YGGs with EDP on sinx?

- If anyone can help me with either or will be gladly appreciated <3

Edited by illusion

3 answers to this question

Recommended Posts

Posted (edited)
Mangum break doesnt enchant the player with fire property. How can i fix it?

src/map/skill.c

	case SM_MAGNUM:
case MS_MAGNUM:
	skill_area_temp[1] = 0;
	map_foreachinrange(skill_area_sub, src, skill_get_splash(skillid, skilllv), BL_SKILL|BL_CHAR,
		src,skillid,skilllv,tick, flag|BCT_ENEMY|1, skill_castend_damage_id);
	clif_skill_nodamage (src,src,skillid,skilllv,1);
	// Initiate 10% of your damage becomes fire element.
	sc_start4(src,SC_WATK_ELEMENT,100,3,20,0,0,skill_get_time2(skillid, skilllv));  <----- Fire Element Enchant
	if( sd )
		skill_blockpc_start(sd, skillid, skill_get_time(skillid, skilllv));
	else if( bl->type == BL_MER )
		skill_blockmerc_start((TBL_MER*)bl, skillid, skill_get_time(skillid, skilllv));
	break;

Its there in code, check your src.

Edited by Dastgir Pojee
Posted
Mangum break doesnt enchant the player with fire property. How can i fix it?

src/map/skill.c

	case SM_MAGNUM:
case MS_MAGNUM:
	skill_area_temp[1] = 0;
	map_foreachinrange(skill_area_sub, src, skill_get_splash(skillid, skilllv), BL_SKILL|BL_CHAR,
		src,skillid,skilllv,tick, flag|BCT_ENEMY|1, skill_castend_damage_id);
	clif_skill_nodamage (src,src,skillid,skilllv,1);
	// Initiate 10% of your damage becomes fire element.
	sc_start4(src,SC_WATK_ELEMENT,100,3,20,0,0,skill_get_time2(skillid, skilllv));  <----- Fire Element Enchant
	if( sd )
		skill_blockpc_start(sd, skillid, skill_get_time(skillid, skilllv));
	else if( bl->type == BL_MER )
		skill_blockmerc_start((TBL_MER*)bl, skillid, skill_get_time(skillid, skilllv));
	break;

Its there in code, check your src.

What part do i edit for i can change it to endow the player with fire property?

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...