Custom Items.

Find the proper support area, Saga-Version.
Forum rules
READ NOW: L2j Forums Rules of Conduct
kehabouter
Posts: 19
Joined: Sat Jan 02, 2010 3:20 pm

Custom Items.

Post by kehabouter »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:3729
L2JDP Revision Number:6815

thanks man i found it in the SQL.

i want to made 3 custom tattoo's ( heavy light robe )
and i've made a script all together, but i really dont know if its good and how i get it into the database.

- <item id="90001" name="Light Tattoo">
- <for>
<set val="x" order="0x10" stat="pDef" />
<set val="x" order="0x08" stat="pAtkSpd" />
<set val="x" order="0x08" stat="rCrit" />
<set val="x" order="0x08" stat="pAtk" />
<enchant order="0x0C" stat="pDef" val="0" />
</for>
</item>

if this is a correct script,
what is the stat for casting speed ?
stat="cAtkSpd" ?

greetings
Last edited by kehabouter on Wed Jan 06, 2010 5:10 pm, edited 1 time in total.
Crom
Posts: 191
Joined: Sun May 24, 2009 8:09 pm
Location: Spain

Re: Custom Items.

Post by Crom »

To make custom items you have to edit the system of your players and i think it's illegal...
User avatar
denser
Posts: 1392
Joined: Wed May 30, 2007 9:13 pm
Location: Russia
Contact:

Re: Custom Items.

Post by denser »

custom - means exist items but custom stats.
all client modify(i.e. custom description) is illegal :?
Tiger, once tasted human flesh, will want to taste it again
L2J - the place where glad to see you any time!
User avatar
ThePhoenixBird
L2j Inner Circle
L2j Inner Circle
Posts: 1857
Joined: Fri May 27, 2005 5:11 pm

Re: Custom Items.

Post by ThePhoenixBird »

you can modify any weapon XML file to add custom stats or buffs to it, no need to touch client files (and you shouldnt)
Crom
Posts: 191
Joined: Sun May 24, 2009 8:09 pm
Location: Spain

Re: Custom Items.

Post by Crom »

This is a customization of an existant item, but he say create. I think that is a difference that he have to think...
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Custom Items.

Post by martin86 »

I have similar questions.
Changing items or skills in L2JServer\gameserver\data\stats\ is ilegal ? Or only changing system map in clinet is ilegal ?
I changed item id 1472 dreadbane to S84 grade, soulshot use and blesedsoulshot use is lower ...

Code: Select all

     <item id="1472" type="Weapon" name="Dreadbane">        <set name="icon" val="icon.weapon_monster_i00" />        <set name="default_action" val="equip" />        <set name="weapon_type" val="pole" />        <set name="bodypart" val="lrhand" />        <set name="random_damage" val="10" />        <set name="attack_range" val="80" />           <set name="damage_range" val="0;0;66;120" />  <!-- Can somebody tell me what this means ? -->        <set name="hit_modify" val="-3.75" /> <!-- Can somebody tell me what this means ? -->        <set name="immediate_effect" val="1" />        <set name="crystal_count" val="9872" />         <set name="crystal_type" val="s84" />         <set name="material" val="bronze" />        <set name="weight" val="2010" />         <set name="price" val="400000000" />         <set name="soulshots" val="1" />         <set name="spiritshots" val="1" />         <set name="element_enabled" val="1" />          <set name="enchant_enabled" val="1" />        <set name="item_skill" val="30000-10" />         <for>            <set order="0x08" stat="pAtk" val="437" />             <set order="0x08" stat="mAtk" val="192" />            <set order="0x08" stat="rCrit" val="8" />            <add order="0x10" stat="accCombat" val="-3.75" /><!-- Can somebody tell me what this means?-->            <set order="0x08" stat="pAtkSpd" val="325" />            <enchant val="0" order="0x0C" stat="pAtk" />            <enchant val="0" order="0x0C" stat="mAtk" />        </for>    </item> 
but if i go ingame i don`t see this stats. I see normal dreadbane and not custom dreadbane. But if i put dreadbane in my hand he gives me all custom stats. So my question is where or what do i need to change so i will see in game custom dreadbane ?

Sori for bad english :D
User avatar
jurchiks
Posts: 6769
Joined: Sat Sep 19, 2009 4:16 pm
Location: Eastern Europe

Re: Custom Items.

Post by jurchiks »

All of that stuff is client-side, and, according to EULA, it's illegal to modify.
If you have problems, FIRST TRY SOLVING THEM YOURSELF, and if you get errors, TRY TO ANALYZE THEM, and ONLY if you can't help it, THEN ask here.
Otherwise you will never learn anything if all you do is copy-paste!
Discussion breeds innovation.
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Custom Items.

Post by martin86 »

So changing the code in L2JServer\gameserver\data\stats\ would be ilegal ?
But we are not changing client we are changing server ?
User avatar
dark911_ro
Posts: 80
Joined: Wed Sep 08, 2010 11:48 am
Location: Romania

Re: Custom Items.

Post by dark911_ro »

martin86 wrote:So changing the code in L2JServer\gameserver\data\stats\ would be ilegal ?
But we are not changing client we are changing server ?

No , changing server files is not illegal. So you can change w/e you want.

Changing CLIENT files is illegal! For ex , your issue : If you want to make client see stats you modified on that item will be illegal.
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Custom Items.

Post by martin86 »

So basicly if i change xml files on server and i dont change anything in the system folder its all ok ?
But players wont see what i did whith wepons/armors :X
hope
Posts: 1160
Joined: Thu Aug 30, 2007 5:17 pm

Re: Custom Items.

Post by hope »

change files in server is ok
change files in client is a no no
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Custom Items.

Post by martin86 »

Thx for info but i have another question :D
If changing client is ilegal, why is there so many privat servers whith custom items and nobody pay for ilegal actions ?
User avatar
dark911_ro
Posts: 80
Joined: Wed Sep 08, 2010 11:48 am
Location: Romania

Re: Custom Items.

Post by dark911_ro »

martin86 wrote:Thx for info but i have another question :D
If changing client is ilegal, why is there so many privat servers whith custom items and nobody pay for ilegal actions ?
Why there are people that kill other people or steal things and never get caught ?
To be more clear , your free to do w/e you want with ur client files , but you wont get any help regarding that issue from this forum.
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Custom Items.

Post by martin86 »

This is kinda bad, if i cant make any custom items, my server wont be any diferent from other servers :D
But still i wont change client. Thx for info again.
mudasty
Posts: 6
Joined: Mon Oct 10, 2011 11:41 pm

Re: Custom Items.

Post by mudasty »

hello everyone,

i need to add a custom item in server side like adena.

i have added this code to xml:

<item name="Test" type="EtcItem" id="99000">
<set name="icon" val="icon.etc_adena_i00"/>
<set name="immediate_effect" val="1"/>
<set name="material" val="gold"/>
<set name="price" val="1"/>
<set name="is_stackable" val="true"/>
<set name="is_questitem" val="true"/>
</item>

i run item create ingame and system shows "you have spawned 100 Test(99000) in gm02 inventory.

i go check my iventory and i have nothing there. i tryed to restart and nothing.
when i check the database, the item is there in my items list.

should i need to add this item in any other place?

thanks for help.
Post Reply