Jump to content
  • 0

l2jacis inverntor bug


Question

Posted

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 

 

 

7 answers to this question

Recommended Posts

  • 0
Posted

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.

  • 0
Posted (edited)

ok

 first

0b7bb31ed72a29ef4b0b8b0d7fe2e135539.jpg

 

second 

 

771ba8acf4451e55269faa720b63dfca24.jpg

 

after RR

 

05a6fcccb8dc9b392cd1c370333a1cc6752.jpg

 

 

How to make when you open bog its instant show 10 x not after rr

Edited by remigas
  • 0
Posted (edited)

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
  • 0
Posted (edited)

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
Guest
This topic is now closed to further replies.


×
×
  • Create New...