Jump to content
  • 0

l2jacis inverntor bug


remigas

Question

Hi guys sometimes if you drop adena and pic up you can see 2x or 3x adenas in inventor, and if you want open BOG 10x its shows 10x only after rr

Can someone drop me a code how to fix this bug in acis don't remember but can be posted already, cant find it :) tnx 

 

 

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

If you want change stackable type for item then you need make 2 steps:

 

1. Server side - setup for current item the flag is_stackable in TRUE.

2. In client inside etcitemgrp.dat change stackable column value from 0 to 1.

 

If you need many items for changing then better write the script which will parse files and change all necessary places automatically.

Link to comment
Share on other sites

  • 0

aCis_datapack\data\xml\items\6600-6699.xml

 

add that line with the plus mark

 

    <item id="6622" type="EtcItem" name="Secret Book of Giants">
        <set name="material" val="PAPER" />
        <set name="weight" val="10" />
        <set name="price" val="500000" />
+      <set name="is_stackable" val="true" />
    </item>

 

in case it always show (1) you will need a fileedit for interlude and edit etcitemgrp.dat

 

 

replace in etcitemgrp.dat

 

this

 

2    6622    0    0    2    5    0    dropitems.drop_sack_m00            dropitemstex.drop_sack_t00            icon.etc_codex_of_giant_i00                    0    10    18    0    0    1        1        ItemSound.itemdrop_sack        0    0    0

 

with

 

2    6622    0    0    2    5    0    dropitems.drop_sack_m00            dropitemstex.drop_sack_t00            icon.etc_codex_of_giant_i00                    0    10    18    0    0    1        1        ItemSound.itemdrop_sack        3    0    0

 

be careful with the space after the last 0
example

ItemSound.itemdrop_sack        3    0    0 <--
if there is one remove it

 

Edited by BruT
Link to comment
Share on other sites

  • 0

il fixed bogs all good, but now have problem with them and other items like example. Crowns, if i try put them in clan wh, i need to add them one by one idk why, if i try put them together after i press ok they stays in inventor. will attach pics.

 

this how i see items in inventor

 

eb31f5630cfa653e6231880d0bc4ad5294.jpg

 

This how i see them in WH

 

b3a413072333ad5d78ba83d6948696f2239.jpg

 

and after i try press ok they dont go in wh, stays in inventor, 

 

My Question, how to make them separate in WH also?

Crown code : 
    <item id="9212" type="EtcItem" name="Red Crown">
        <!-- Noblesse Manager -->
        <set name="material" val="STEEL" />
        <set name="is_tradable" val="true" />
        <set name="is_dropable" val="true" />
        <set name="is_sellable" val="false" />
        <set name="is_depositable" val="true" />
        <set name="is_stackable" val="false" />
    </item>
 

Bog Code 

 

    <item id="6622" type="EtcItem" name="Secret Book of Giants">
        <set name="default_action" val="capsule" />
        <set name="material" val="PAPER" />
        <set name="weight" val="100" />
        <set name="is_stackable" val="false" />
        <set name="handler" val="BookofGiants" />
    </item>

 

 

 

 

 

 


 

Edited by remigas
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...