Jump to content
  • 0

[Help]


♪Powe®Musi©™

Question

4 answers to this question

Recommended Posts

  • 0

First question:

go to gameserver\data\stats\skills folder and look for the respective xml file of the skill you need (example Dash skill id = 4)

and edit this:

	<skill id="4" levels="2" name="Dash">
	<table name="#spd"> 40 66 </table>
	<table name="#mpConsume"> 10 21 </table>
	<table name="#aggro"> 204 438 </table>
	<set name="mpConsume" val="#mpConsume" />
	<set name="target" val="TARGET_SELF" />
	<set name="reuseDelay" val="30000" />
	<set name="hitTime" val="1000" />
	<set name="skillType" val="BUFF" />
	<set name="operateType" val="OP_ACTIVE" />
	<set name="aggroPoints" val="#aggro" />
	<for>
		<effect name="Buff" time="15" val="0" stackOrder="#spd" stackType="speed_up_special">
			<add order="0x40" stat="runSpd" val="#spd" />
		</effect>
	</for>
</skill>

 

Replace OP_ACTIVE with OP_PASSIVE

 

 

About the second question... explain better please?

Link to comment
Share on other sites

  • 0

First question:

go to gameserver\data\stats\skills folder and look for the respective xml file of the skill you need (example Dash skill id = 4)

and edit this:

	<skill id="4" levels="2" name="Dash">
	<table name="#spd"> 40 66 </table>
	<table name="#mpConsume"> 10 21 </table>
	<table name="#aggro"> 204 438 </table>
	<set name="mpConsume" val="#mpConsume" />
	<set name="target" val="TARGET_SELF" />
	<set name="reuseDelay" val="30000" />
	<set name="hitTime" val="1000" />
	<set name="skillType" val="BUFF" />
	<set name="operateType" val="OP_ACTIVE" />
	<set name="aggroPoints" val="#aggro" />
	<for>
		<effect name="Buff" time="15" val="0" stackOrder="#spd" stackType="speed_up_special">
			<add order="0x40" stat="runSpd" val="#spd" />
		</effect>
	</for>
</skill>

 

Replace OP_ACTIVE with OP_PASSIVE

 

 

About the second question... explain better please?

 

Remember that,

 

If change OP_ACTIVE with OP_PASSIVE he need + some changes, for exemple:

 

- Change MP Consume to 0, if it's passive do not consume Mp... but for sure do it.

 

DELETE:

 

<effect name="Buff" time="15" val="0" stackOrder="#spd" stackType="speed_up_special">

</effect>

 

And other... depends by skill.

Link to comment
Share on other sites

  • 0
2)How do I make a skill working example the bluff of dagger?

 

i can't understand you want make skill that use only with dagger? if yes

 

look here open Bluff Skill Xml

 

<skill id="358" levels="1" name="Bluff">

  <set name="weaponsAllowed" val="16"/>

  <set name="mpConsume" val="35"/>

  <set name="power" val="40"/>

  <set name="target" val="TARGET_ONE"/>

  <set name="skillType" val="STUN"/>

  <set name="operateType" val="OP_ACTIVE"/>

  <set name="castRange" val="40"/>

  <set name="effectRange" val="400"/>

  <set name="reuseDelay" val="30000"/>

  <set name="hitTime" val="1000"/>

  <for>

    <effect count="1" name="Bluff" time="3" val="0" stackOrder="1" stackType="Stun"/>

  </for>

</skill>

 

<set name="weaponsAllowed" val="16"/>

 

in skill xml :)

this mean this skill will used only with dagger

 

just add

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.
Note: Your post will require moderator approval before it will be visible.

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...