Jump to content

'Baggos'

Legendary Member
  • Posts

    3,873
  • Credits

  • Joined

  • Last visited

  • Days Won

    26
  • Feedback

    100%

Community Answers

  1. 'Baggos''s post in Don't remove buffs when dea char was marked as the answer   
    Playable.java delete it and in there.
  2. 'Baggos''s post in L2jFrozen Buffer problem 1132 was marked as the answer   
    Try without invul.. or deactivate .menu(de-buff setting) if is on.
  3. 'Baggos''s post in Nobless Teleport was marked as the answer   
    Try this one.
     
                if (command.startsWith("easy"))
                {
                    if (!activeChar.isNoble())
                    {
                        activeChar.sendMessage("Only Noblesse players can teleport.");
                        return;
                    }
                    else
                    {
                        activeChar.destroyItemByItemId("consume", 57, 50000, activeChar, true);
                        activeChar.teleToLocation(89006, 27373, -15691);
                        activeChar.sendMessage("You have teleported to easy farm zone");
                        _reuse.put(activeChar.getObjectId(), System.currentTimeMillis() + delay);
                    }
                }
  4. 'Baggos''s post in Starting buffs was marked as the answer   
    STARTING_BUFFS = Boolean.valueOf(otherSettings.getProperty("StartingBuffs", "True")); LOGGER.warn("StartingBuffsMage[Config.load()]: invalid config property -> StartingBuffsMage \"" + buff + "\"");
  5. 'Baggos''s post in Npc Upgrade was marked as the answer   
    Just change the ID of the armor lvl 2. Dyn set ID 1,2,3,4,5, go to your xml/items, c/p those armor parts and then change the ID and stats. Also, you will need to put the new ID on client. itemname, armorgrp.
    About shop, as sweet told you, you will need to put npc type Merchant. 
     
    Mutilsell example:

    <?xml version='1.0' encoding='utf-8'?> <!-- D-Grade Weapons --> <list>   <!-- Dynasty Helm lvl 1 -->   <item id="1">         <ingredient id="1" count="1"/>         <production id="2" count="1"/>   </item>     <!-- Dynasty BreastPlate lvl 1 -->   <item id="2">         <ingredient id="1" count="1"/>         <production id="2" count="1"/>   </item>     <!-- Dynasty Legs lvl 1 -->   <item id="3">         <ingredient id="1" count="1"/>         <production id="2" count="1"/>   </item>     <!-- Dynasty Gloves lvl 1 -->   <item id="4">         <ingredient id="1" count="1"/>         <production id="2" count="1"/>   </item>     <!-- Dynasty Boots lvl 1 -->   <item id="5">         <ingredient id="1" count="1"/>         <production id="2" count="1"/>   </item> </list>
     
    Npc example:

            <npc id="20704" idTemplate="30865" name="Shop" title="Global Store">         <set name="usingServerSideName" val="true"/>         <set name="usingServerSideTitle" val="true"/>         <set name="level" val="80"/>         <set name="radius" val="8"/>         <set name="height" val="26"/>         <set name="rHand" val="0"/>         <set name="lHand" val="0"/>         <set name="type" val="Merchant"/>         <set name="exp" val="0"/>         <set name="sp" val="0"/>         <set name="hp" val="2444.46819"/>         <set name="mp" val="1345.8"/>         <set name="hpRegen" val="7.5"/>         <set name="mpRegen" val="2.7"/>         <set name="pAtk" val="688.86373"/>         <set name="pDef" val="295.91597"/>         <set name="mAtk" val="470.40463"/>         <set name="mDef" val="216.53847"/>         <set name="crit" val="4"/>         <set name="atkSpd" val="253"/>         <set name="str" val="40"/>         <set name="int" val="21"/>         <set name="dex" val="30"/>         <set name="wit" val="20"/>         <set name="con" val="43"/>         <set name="men" val="20"/>         <set name="corpseTime" val="7"/>         <set name="walkSpd" val="50"/>         <set name="runSpd" val="120"/>         <set name="dropHerbGroup" val="0"/>         <ai type="DEFAULT" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="true" seedable="false"/>         <skills>             <skill id="4045" level="1"/>             <skill id="4416" level="17"/>         </skills>     </npc>
     
    html/merchant/20704

    <html> <title> SHOP UPGRADER </title> <center> <img src="networklogo1.networklogo1" height=90 width=294></td> </center> <center> <img src="L2UI.SquareGray" width=300 height=1> <br> <img src="L2UI.SquareGray" width=300 height=1> <table width=300 height=32 bgcolor=000000> <tr> <td fixwidth=5> </td> <td fixwidth=32 height=42> <img src="icon.accessory_necklace_of_valakas_i00" width=34 height=33> </td> <td fixwidth=250> <font color=F57E21><a action="bypass -h npc_%objectId%_multisell 501">Upgrade Dynasty</font></a><br1> <font color=F2F5A9>You need Upgrade? Here you are.</font> </td> </tr> </table> <img src="L2UI.SquareGray" width=300 height=1> </center> </body> </html>
  6. 'Baggos''s post in Acis npc was marked as the answer   
    Your Buffer have type SchemeBuffer, so your rev is 367+, so you should use type as Gatekeeper and not L2Teleporter. 
    Take a look on instances and make your npcs.
     
    It should look like this: Copy and paste it.
            <npc id="50009" idTemplate="30952" name="Global Gatekeeper" title="Portal">         <set name="usingServerSideName" val="true"/>         <set name="usingServerSideTitle" val="true"/>         <set name="level" val="70"/>         <set name="radius" val="7"/>         <set name="height" val="35"/>         <set name="rHand" val="0"/>         <set name="lHand" val="0"/>         <set name="type" val="Gatekeeper"/>         <set name="exp" val="0"/>         <set name="sp" val="0"/>         <set name="hp" val="2444.46819"/>         <set name="mp" val="1345.8"/>         <set name="hpRegen" val="7.5"/>         <set name="mpRegen" val="2.7"/>         <set name="pAtk" val="688.86373"/>         <set name="pDef" val="295.91597"/>         <set name="mAtk" val="470.40463"/>         <set name="mDef" val="216.53847"/>         <set name="crit" val="4"/>         <set name="atkSpd" val="253"/>         <set name="str" val="40"/>         <set name="int" val="21"/>         <set name="dex" val="30"/>         <set name="wit" val="20"/>         <set name="con" val="43"/>         <set name="men" val="20"/>         <set name="corpseTime" val="7"/>         <set name="walkSpd" val="50"/>         <set name="runSpd" val="120"/>         <set name="dropHerbGroup" val="0"/>         <skills>             <skill id="4045" level="1"/>             <skill id="4416" level="18"/>         </skills>     </npc>
  7. 'Baggos''s post in [Help]Site was marked as the answer   
    There is bump button to bring up your topic. Use it next time.
  8. 'Baggos''s post in Remove Buffs For Acis was marked as the answer   
    You should config(if you want it with config) the restoreEffects in method setActiveClass at L2PcInstance.
     
    Like:
    - restoreEffects(); + if (!Config.REMOVE_BUFFS_ON_SUBCLASS) + restoreEffects();   updateEffectIcons();   sendPacket(new EtcStatusUpdate(this));
  9. 'Baggos''s post in Class Upgration was marked as the answer   
    Open the Instance of ClassMaster and you will got it..
  10. 'Baggos''s post in Prob With One Area was marked as the answer   
    <zone type="EffectZone" shape="NPoly" minZ="-4815" maxZ="-315"><!-- Zaken Curse Zone -->         <stat name="skillIdLvl" val="4515-1;" />         <stat name="chance" val="100" />         <!-- stat name="initialDelay" val="2000" / -->         <stat name="reuse" val="6000" />         <stat name="affectedLvlMin" val="70" />         <node X="50797" Y="213515" />         <node X="57617" Y="213510" />         <node X="57669" Y="221683" />         <node X="50773" Y="221632" />     </zone> Make the chance 0.
  11. 'Baggos''s post in Aporia Oxi Toso Problem was marked as the answer   
    HopezoneUrl: http://l2.hopzone.net/lineage2/details/79743/L2Saga
  12. 'Baggos''s post in Compiling Error : This Client Is Too Old To Work With Working Copy '.' was marked as the answer   
    Read this..
    or press the button "Show"..
     
     
  13. 'Baggos''s post in Skill Chance was marked as the answer   
    Δοκίμασε να κατεβάσεις αυτό:
     <set name="power" val="80"/>
  14. 'Baggos''s post in Custom Respawn Location After Death was marked as the answer   
    Give a try here...
     
    network/clientpackets/RequestRestartPoint.java
                                loc = new Location(17836, 170178, -3507);// Floran Village                             break;                         } -                        loc = MapRegionTable.getInstance().getTeleToLocation(activeChar, MapRegionTable.TeleportWhereType.Town); -                            break; -                        } +                        if (Config.CUSTOM_RESPAWN) +                            loc = new Location(Config.CSPAWN_X, Config.CSPAWN_Y, Config.CSPAWN_Z); +                        else +                            loc = MapRegionTable.getInstance().getTeleToLocation(activeChar, MapRegionTable.TeleportWhereType.Town); +                        break; +                } Config.java
        public static boolean CUSTOM_RESPAWN;     public static int CSPAWN_X;     public static int CSPAWN_Y;     public static int CSPAWN_Z;           CUSTOM_RESPAWN = Boolean.parseBoolean(altSettings.getProperty("RespawnAfterDeath", "false"));         CSPAWN_X = Double.parseDouble(altSettings.getProperty("SpawnX", "your choose"));         CSPAWN_Y = Double.parseDouble(altSettings.getProperty("SpawnY", "your choose"));         CSPAWN_Z = Double.parseDouble(altSettings.getProperty("SpawnZ", "your choose")); config.property
    # Custom Respawn When You Die. RespawnAfterDeath = false SpawnX = your choose SpawnY = your choose SpawnZ = your choose
  15. 'Baggos''s post in Paysafe To Paypal was marked as the answer   
    1ον) Για 1000 φορά, είσαι σε λάθος section!
    2on) Και να σου πω το πως, δε θα μπορείς να τραβήξεις τα λεφτά από την paypal επειδή είσαι μικρός.
    3ον) Μια συμβουλή.. Μην δεχθείς να ανταλλάξεις 10αρα psc για λιγότερο από 8.50 ευρώ. ή 20αρα για λιγότερο από 17 ευρώ.
     
    Επίσης, μην μπεις καν στον κόπο να ανταλλάξεις επειδή όπως σου είπα είσαι κάτω των 18 και για να πάρεις λεφτά στη paypal θέλει λογαριασμό τράπεζας + ότι πρέπει να γίνει active. Οπότε, αν κανείς σου πει πως γίνεται, απλά μην δώσεις το pin της paysafe γιατί σε κοροϊδεύει...
    Αν συμφωνήσεις με τους γονείς σου να σου βάλουν αυτοί έναν λογαριασμό paypal, στείλε μου ΠΜ να σε βοηθήσω γιατί εδώ μέσα υπάρχουν "βρυκόλακες"!
  16. 'Baggos''s post in [Code]Auto Equip Items On Class Quest was marked as the answer   
    Try this one mate..
     
    http://www.maxcheaters.com/topic/139962-share-l2jquest-change-auto-equip-armors-weapons/
  17. 'Baggos''s post in Gia Sas Help Ligo Me To Eclipse was marked as the answer   
    Ναι αγορίνα.
    Κάνε Build--> run1 σε datapack και gameserver.
  18. 'Baggos''s post in Starting Bar Tutorial Book was marked as the answer   
    -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 το βλέπεις κανονικά, τι να σου πω...
×
×
  • Create New...