Jump to content
  • 0

Custom Item & Skill Not Showing Up Ingame?


Question

Posted

Hello, I have created a custom item and a custom skill just to test it out to see if I could get it working before I started adding more of them. I have created a custom item based off of this item 

	<item id="10102" type="EtcItem" name="Spellbook - Throne of Wind">
		<set name="icon" val="icon.etc_spell_books_element_i00" />
		<set name="immediate_effect" val="true" />
		<set name="material" val="PAPER" />
		<set name="weight" val="120" />
		<set name="price" val="30000" />
		<set name="is_stackable" val="true" />
	</item>

made a new file in my items/custom called 22600-22699.xml and made the custom skill

	<item id="22600" type="EtcItem" name="Spellbook - Test">
		<set name="icon" val="icon.etc_spell_books_element_i00" />
		<set name="immediate_effect" val="true" />
		<set name="material" val="PAPER" />
		<set name="weight" val="120" />
		<set name="price" val="30000" />
		<set name="is_stackable" val="true" />
	</item>

I can create the item in the server to my character and it says I have created the item in my inventory with no errors, but I do not see the item even with client and server restarts.

Same thing with my custom skills. I took the skill information from Dash id 4 and made a new skill just for testing called Dash v2 in my skills/custom/10000-10099.xml

	<skill id="27000" levels="1" name="Dashv2">
		<set name="abnormalLvl" val="1" />
		<set name="abnormalTime" val="15" />
		<set name="abnormalType" val="SPEED_UP_SPECIAL" />
		<set name="effectPoint" val="100" />
		<set name="hitTime" val="1000" />
		<set name="icon" val="icon.skill0484" />
		<set name="magicLvl" val="85" />
		<set name="mpConsume" val="100" />
		<set name="operateType" val="A2" />
		<set name="reuseDelay" val="1000" />
		<set name="rideState" val="NONE" />
		<set name="targetType" val="SELF" />
		<for>
			<effect name="Buff">
				<add stat="runSpd" val="100" />
			</effect>
		</for>
	</skill>

I gave my character the skill, it says I added skill Dash v2 but I also do not see this skill. Can I not create new items and skills? Can I only just edit old items and skills? My plan was to create custom spellbooks which would let players learn custom skills. If anyone could help me with this that would be create, thanks in advance!

3 answers to this question

Recommended Posts

  • 0
Posted (edited)

Because it doesn't exists for the client.

Adding a custom stuff includes client modification, you've created the items and skills but the client doesn't recognizes them!

Edited by Tessa
  • 0
Posted

Gotcha, alright I will try adding them client side to see if it works then. As far as my idea goes for making a custom skill book to learn a custom skill, is that possible? Because I didn't see anything under the items .xml's for the skillbooks to give a skill id.

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