Jump to content
  • 0

Starting Bar Tutorial Book


Question

Posted

Kalispera psaxno pos tha allakso to Tutorial book kai o kwdikas mesa sto characterCreation mou ellege

if (item.getId() == 5588)
				{
					shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
					newChar.registerShortCut(shortcut);
				}
				
				if (item.isEquipable() && ie.isEquipped())
				{
					newChar.getInventory().equipItem(item);
				}

Mporei kapios na me voithisei?

Allazo to 5588 me to ID tou antikimenou pou thelo alla otan kano new char anti na mou vgalei to item pou exw wrisei mou to afinei keno
Den exo provlima oute se Itemname oute se etcitemgrp klp klp apla pos mporw na to kano na mpenei automata ston kainourio paixti stin thesi tou vivliou??

14 answers to this question

Recommended Posts

  • 0
Posted (edited)

Kalws eisai, den.

 

to shortcut prepei na mpei otan ftiaxneis to new item

 

L2ItemInstance item = ...

registerShortcut(new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1));

 

gia na mpei ena item stin mpara prepei na exeis reference i toulaxiston tin oID, sketi oID diskola ara 9es reference pou simenei oti prepei na mpei tin stigmi pou dineis to item ston char

 

 

 

-if (item.getId() == 5588) Υπάρχει ήδη πιο πάνω γι'αυτό και το έστειλα έτσι. Όμως το πρόβλημα είναι ότι του βγάζει κενό στη μπάρα σαν να μην όρισε ιτεμ.

-               {

-                    shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);

-                   newChar.registerShortCut(shortcut);

-                }

               

 

+            if (item.getItemId() == 5588)

+               {

+               newChar.registerShortCut(new L2ShortCut(11, 0, 1, item.getObjectId(), -1, 1));

+                }

 

Για άλλαξε τώρα απλά το 5588. Δε μπορώ να καταλάβω κάτι άλλο.. Δεν έχω αλλάξει ξανά το bar, όμως όπως το διαβάζω θα πρέπει να δουλέψει. Μόνο αντικατάσταση κάνεις. Δεν χρειάζεται να περάσεις κάτι άλλο κάπου αλλού, εκτός και αν το ιτεμ που θες είναι Custom Item, εκεί υπάρχει αλλού άλλα να αλλάξεις μετά από αυτά.

Αλλά αν στο invetory το βλέπεις κανονικά, τι να σου πω...

Edited by 'Baggos'
  • 0
Posted (edited)

Kalispera psaxno pos tha allakso to Tutorial book kai o kwdikas mesa sto characterCreation mou ellege

if (item.getId() == 5588)
				{
					shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
					newChar.registerShortCut(shortcut);
				}
				
				if (item.isEquipable() && ie.isEquipped())
				{
					newChar.getInventory().equipItem(item);
				}

Mporei kapios na me voithisei?

Allazo to 5588 me to ID tou antikimenou pou thelo alla otan kano new char anti na mou vgalei to item pou exw wrisei mou to afinei keno

Den exo provlima oute se Itemname oute se etcitemgrp klp klp apla pos mporw na to kano na mpenei automata ston kainourio paixti stin thesi tou vivliou??

Μόνο αυτός είναι ο κώδικας?

Πιο ίτεμ είναι το 5588?

 

edit: Τώρα κατάλαβα καλύτερα την ερώτησή σου. Άκου, πήγαινε στο Eclipse, game/ data/ stats/ initialEquipment.xml

Κάνε το edit και βάλε:

 

Όπου:  κόκκινο, αλλάζεις και βάζεις αυτό που θες.

      <!-- Human Fighter -->

        <equipment classId="0">

                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->

                <item id="10" count="1" /> <!-- Dagger -->

                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->

                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->

                <item id="5588" count="1" /> <!-- Tutorial Guide -->

                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->

                <item id="32226" count="10" />

        </equipment>

 

<!-- Human Fighter -->
        <equipment classId="0">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Human Mystic -->
        <equipment classId="10">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Elven Fighter -->
        <equipment classId="18">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Elven Mystic -->
        <equipment classId="25">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dark Fighter -->
        <equipment classId="31">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dark Mystic -->
        <equipment classId="38">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Orc Fighter -->
        <equipment classId="44">
                <item id="2369" count="1" /> <!-- Squire's Sword -->
                <item id="2368" count="1" equipped="true" /> <!-- Training Gloves -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Orc Mystic -->
        <!-- NOTE: This is orc_mage (orc_shaman is retail typo) -->
        <equipment classId="49">
                <item id="2368" count="1" equipped="true" /> <!-- Training Gloves -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dwarf Fighter -->
        <equipment classId="53">
                <item id="2370" count="1" equipped="true" /> <!-- Guild Member's Club -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Male Kamael Soldier -->
        <equipment classId="123">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Female Kamael Soldier -->
        <equipment classId="124">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
Edited by 'Baggos'
  • 0
Posted (edited)

Καλύτερα όμως θα ήταν σε config να μην μπερδεύεσαι τόσο κάθε φορά..

 

θα προσπαθήσω να κάνω ένα αλλά δε σε εγγυόμαι ότι θα δουλέψει 100%. Έχω πάνω από 2 χρόνια να ασχοληθώ με αυτό. Λίγα θυμάμαι.

 

Πήγαινε στο config.Java

 

Βρες το

public static boolean ANNOUNCE_CASTLE_LORDS;
+
+/**Custom Stating Item**//
+public static boolean STARTING_ITEMS = false;
    +public static int STARTING_ITEMS_ID;
    +public static long STARTING_ITEMS_COUNT;
 

+
+
+STARTING_ITEMS = Boolean.parseBoolean(otherSettings.getProperty("StartingItems", "False"));
            +STARTING_ITEMS_ID = Integer.parseInt(otherSettings.getProperty("StartingItemId", "5588"));
            +STARTING_ITEMS_COUNT = Long.parseLong(otherSettings.getProperty("StartingItemCount", "1"));
+
STARTING_ADENA = Integer.parseInt(otherSettings.getProperty("StartingAdena", "100"));

μετά πήγαινε CharacterCreate.java

 

Βρες αυτό που έδειξες πριν

                    newChar.getInventory().equipItem(item);
                }
+
+if (Config.STARTING_ITEMS)
        +{
        +    newChar.addItem("Init", Config.STARTING_ITEMS_ID, (int) Config.STARTING_ITEMS_COUNT, null, false);
        +}

μετά πήγαινε σε

other.properties στο τέλος του
+#Custom Starting Items
+StartingItems = false
+StartingItemId = 5588
+StartingItemCount = 1

Άνοιξα ένα svn του frozen χωρίς eclipse και το ψαξα, δε ξέρω κατά πόσο θα δουλέψει.

Edited by 'Baggos'
  • 0
Posted

Se euxaristo para polli gia ton xrono sou kai gia tin apantisi sou :)
Den thelo apla na dwso ston char ena item otan ksekinaei auto mporw na to kano i me invidual item system i me to startupsystem pou exo.Thelo to item auto na mpei stin mpara tou kathe new player stin thesi pou ine to Tutorial Book 

An deis kathe fora pou ftiaxneis new char stin bara sou exei px ston Fighter sto F1 to attack sto f4 to pickup kai sto F11 i F12 den thimame kala sou dinei to Tutorial book ego auto pou thelo na ftiakso ine stin thesi tou Tutorial Book stin Mpara na valo ena diko mou item se kathe new char creation!!

  • 0
Posted (edited)

Μπορείς να μου στείλεις σε ΠΜ, ένα παλιό ή ότι να'ναι Interlude source για να μπω στο CreateCharacter.java να βρω τις σειρές που θέλω?

Δεν έχω ούτε Eclipse ούτε τίποτα πλέον στο pc.

 

edit: Θέλω να ανεβάσεις μόνο τα java του, τίποτα άλλο αν μπορείς.

Edited by 'Baggos'
  • 0
Posted (edited)

Δοκίμασε μία έτσι, αν όχι τότε το παρακάτω.

Διαφορετικά, θα βγάζει ερρορ αν έχει πρόβλημα, στείλε μου φώτο το ερρορ.

-    shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
-                   newChar.registerShortCut(shortcut);
 
+newChar.registerShortCut(new L2ShortCut(11,0,1,εδώ για βάλε το id από το ιτεμ,-1,1));

Αντικατέστισε αυτά που γράφω με το item id.

 

 

ή κάνε αυτό, σε αυτό που που έστειλες...

-shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
+shortcut = new L2ShortCut(11, 0, 1, βάλε το id από το ίτεμ που θες, -1, 1);

Δοκίμασε μία και πες μου, αλλιώς στείλε μου τα source που σου ζήτησα.

Edited by 'Baggos'
  • 0
Posted

Δοκίμασε μία έτσι, αν όχι τότε το παρακάτω.

Διαφορετικά, θα βγάζει ερρορ αν έχει πρόβλημα, στείλε μου φώτο το ερρορ.

-    shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
-                   newChar.registerShortCut(shortcut);
 
+newChar.registerShortCut(new L2ShortCut(11,0,1,εδώ για βάλε το id από το ιτεμ,-1,1));

Αντικατέστισε αυτά που γράφω με το item id.

 

 

ή κάνε αυτό, σε αυτό που που έστειλες...

-shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
+shortcut = new L2ShortCut(11, 0, 1, βάλε το id από το ίτεμ που θες, -1, 1);

Δοκίμασε μία και πες μου, αλλιώς στείλε μου τα source που σου ζήτησα.

 

 

Kalws eisai, den.

 

to shortcut prepei na mpei otan ftiaxneis to new item

 

L2ItemInstance item = ...

registerShortcut(new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1));

 

gia na mpei ena item stin mpara prepei na exeis reference i toulaxiston tin oID, sketi oID diskola ara 9es reference pou simenei oti prepei na mpei tin stigmi pou dineis to item ston char

  • 0
Posted (edited)

Ίσως να δουλεύει όπως το κάνεις, αλλά στα παρακάτω το αλλάζεις για να μπει το ιτεμ στον παίχτη που σου είπα πιο πάνω αρχικά?

Το ίδιο και σε όλα τα υπόλοιπα class.

 

<!-- Human Fighter -->
        <equipment classId="0">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="5588" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>

 

 

 

Για να τα πάρουμε από την αρχή κάνε τα παρακάτω και δεν βρίσκω λόγο να μην δουλέψει.

Άμα δε του το δώσεις στο Invetory, δε θα το έχει ούτε στη μπάρα φίλε. Γι'αυτό χθες σου έδωσα το equipment.xml

-            if (item.getId() == 5588)
-               {
-                    shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);
-                   newChar.registerShortCut(shortcut);
-                }
                
 

+            if (item.getItemId() == βάλε ID)
+               {
+               newChar.registerShortCut(new L2ShortCut(11, 0, 1, item.getObjectId(), -1, 1)); 
+                }

game/ data/ stats/ initialEquipment.xml

 

<!-- Human Fighter -->
        <equipment classId="0">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Human Mystic -->
        <equipment classId="10">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Elven Fighter -->
        <equipment classId="18">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Elven Mystic -->
        <equipment classId="25">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dark Fighter -->
        <equipment classId="31">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dark Mystic -->
        <equipment classId="38">
                <item id="6" count="1" equipped="true" /> <!-- Apprentice's Wand -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Orc Fighter -->
        <equipment classId="44">
                <item id="2369" count="1" /> <!-- Squire's Sword -->
                <item id="2368" count="1" equipped="true" /> <!-- Training Gloves -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Orc Mystic -->
        <!-- NOTE: This is orc_mage (orc_shaman is retail typo) -->
        <equipment classId="49">
                <item id="2368" count="1" equipped="true" /> <!-- Training Gloves -->
                <item id="425" count="1" equipped="true" /> <!-- Apprentice's Tunic -->
                <item id="461" count="1" equipped="true" /> <!-- Apprentice's Stockings -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Dwarf Fighter -->
        <equipment classId="53">
                <item id="2370" count="1" equipped="true" /> <!-- Guild Member's Club -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Male Kamael Soldier -->
        <equipment classId="123">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>
        <!-- Female Kamael Soldier -->
        <equipment classId="124">
                <item id="2369" count="1" equipped="true" /> <!-- Squire's Sword -->
                <item id="10" count="1" /> <!-- Dagger -->
                <item id="1146" count="1" equipped="true" /> <!-- Squire's Shirt -->
                <item id="1147" count="1" equipped="true" /> <!-- Squire's Pants -->
                <item id="βάλε ID" count="1" /> <!-- Tutorial Guide -->
                <item id="10650" count="5" /> <!-- Adventurer's Scroll of Escape -->
                <item id="32226" count="10" />
        </equipment>

Edited by 'Baggos'
  • 0
Posted

-if (item.getId() == 5588) Υπάρχει ήδη πιο πάνω γι'αυτό και το έστειλα έτσι. Όμως το πρόβλημα είναι ότι του βγάζει κενό στη μπάρα σαν να μην όρισε ιτεμ.

-               {

-                    shortcut = new L2ShortCut(11, 0, 1, item.getObjectId(), 0, 1);

-                   newChar.registerShortCut(shortcut);

-                }

               

 

+            if (item.getItemId() == 5588)

+               {

+               newChar.registerShortCut(new L2ShortCut(11, 0, 1, item.getObjectId(), -1, 1));

+                }

 

Για άλλαξε τώρα απλά το 5588. Δε μπορώ να καταλάβω κάτι άλλο.. Δεν έχω αλλάξει ξανά το bar, όμως όπως το διαβάζω θα πρέπει να δουλέψει. Μόνο αντικατάσταση κάνεις. Δεν χρειάζεται να περάσεις κάτι άλλο κάπου αλλού, εκτός και αν το ιτεμ που θες είναι Custom Item, εκεί υπάρχει αλλού άλλα να αλλάξεις μετά από αυτά.

Αλλά αν στο invetory το βλέπεις κανονικά, τι να σου πω...

Etsi doulepse :) Se euxaristo para polli 

  • 0
Posted

Etsi doulepse :) Se euxaristo para polli 

Τίποτα φίλε. Τελικά όντως δεν χρειάστεικε αλλαγή στο initialEquipment.xml? Γιατί μου φαίνεται παράξενο να ήρθε ένα ίτεμ χωρίς να το δώσουμε στο invetory..

(ή το άλλαξες στα τυχόν config που έχεις για starting items)?

  • 0
Posted

Τίποτα φίλε. Τελικά όντως δεν χρειάστεικε αλλαγή στο initialEquipment.xml? Γιατί μου φαίνεται παράξενο να ήρθε ένα ίτεμ χωρίς να το δώσουμε στο invetory..

(ή το άλλαξες στα τυχόν config που έχεις για starting items)?

Na sou po tin alitheia eksarxis den ixa dokimasei na dwso to item meso tou invidual giati to evala se allo code pou dino item sto startup kai etsi den xriastike na pirakso to invidual

ston kwdika itane to provlima alla me to last post ftiaxtikan ola :D

  • 0
Posted

Na sou po tin alitheia eksarxis den ixa dokimasei na dwso to item meso tou invidual giati to evala se allo code pou dino item sto startup kai etsi den xriastike na pirakso to invidual

ston kwdika itane to provlima alla me to last post ftiaxtikan ola :D

Πολύ κομπλέ τότε αδερφέ.

Καλή συνέχεια ρει...

Guest
This topic is now closed to further replies.


  • Posts

    • Don't cry, it's a game. If it makes you cum on your monitor, of course, enjoy it. My business has been running for years and will continue to do so. No matter what happens here, the dogs bark, the caravan moves on. Start developing game engines - post them too - after all, I create them too) Salvation:Arena (MOBA) Unreal Engine RED-TEAM REVERSECODE Аліса займається розробкою ще з часів створення денді та сеги-діти які створюють шум для мене просто діти) За ці роки роботи я бачила багато різних людей у цій сфері все що я думаю про це не плачте та насолоджуйтесь життям слава ураїне - котись на свій бразильський форум)   If you'd simply asked me in a private message on the forum to be reinstated, you'd have been unblocked without a problem. I have no enemies—it's just business. I can make any product on the market, models and effects, copyrights—complex tools—at my age, people run large companies. I'm pleased that our beloved MXC* forum will now have a lot of free products. I earn a maximum of $200-$300 a year from this industry. If that excites you, well, have fun with us.       I moderate many gaming communities, here's one of them  if I hated you, you'd be out of here in a minute, brother  so don't get carried away with your wet dreams. On the topic of free work, start doing it yourself—the forum needs good free stuff. Someone will definitely like you here and throw a flower on your grave. Besides, you're forgetting that half the forum is involved in this interface development business and for many developers, it's a good income. So, you want to make life sweeter for them all, not just for me it's actually nice that you're such a noble young man.   Besides, I usually work from behind the scenes and don't move anywhere in the market but nothing stops me from doing what others do - working from the shadows  you won't even see that I'm doing it, it's so funny.   Start doing free work. You promised to do it well and post it to communities on time. Good luck! We'll have fun, that's great!🥰   завжди приємно поспілкуватися з веселими людьми              
    • Complete development packages for Lineage 2 UI development, across all chronicles and an automated tool to update and patch Interface.u & Interface.xdat What I Offer Clean Sources: 100% clean, retail-based interface source code with zero unwanted custom modifications. Interface.u Update Tool: A standalone tool designed to patch, rebuild, and update Interface.u efficiently. Custom Modifications: Custom UI features and tailoring can be implemented upon request. Turnaround Time: Most major versions and protocols are ready for immediate delivery; other versions take up to 1 week. How It Works Let me know the specific chronicle or protocol version you are targeting. I will provide the tool, which is HWID-bound to your machine, for your setup. Once satisfied with the results, we finalize the deal. Pricing & Notes Both products are priced separately based on the target protocol and requirements. Package deals are negotiable if purchasing both. DM for inquiries, demos, and pricing quotes.    
    • Well u need to change when sm1 press exit it keeps it in game..  
    • That’s just part of buying and selling; if your service didn't appeal to me at the time, there's no reason for me to force myself to buy it. After all, I regularly buy other interfaces and clients from other users mostly Russians using USDT. But *I'm* the child here, even though *you're* the incredibly arrogant one.   The payment method or the amounts were never the problem you were. But life goes on; you’d rather stay caught up in your delusions, thinking you’re the protagonist of some anime. Princess Alice 😂   I have all the interfaces for the 474/506/509/520/542/563/557. and olds too.  Some were created by me, including the ARENA P140 interface, which will soon be released for free. This includes everything you make available. It will no longer be a monopoly held by just a few people.   Including your clients with system. like  
    • NEW: Ryzen 9 9950X VPS now Available! Our most Powerful VPS plans now available with dedicated Zen 5 cores clocked up to 5.7 GHz, DDR5 ECC, blazing NVMe Gen4 storage (~7 GB/s), 10 Gbit/s uplink with up to 50 TB traffic, and premium Anti-DDoS included on every plan. No KYC, crypto payments accepted, deployed in minutes. ⭐ RYZEN 9 9950X VPS: [ 9.99 ] 2vCore | 6GB DDR5 | 30GB NVMe - DEPLOY [ 19.99 ] 4vCore | 12GB DDR5 | 50GB NVMe - DEPLOY [ 39.99 ] 8vCore | 24GB DDR5 | 80GB NVMe - DEPLOY [ 69.99 ] 12vCore | 48GB DDR5 | 120GB NVMe - DEPLOY - 10 Gbit/s Port included in ALL Plans - Premium Anti-DDoS included in ALL Plans - No-KYC signup, crypto payments accepted ✅ Ryzen 9 9950X VPS ( vpslab.cloud )
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..