Jump to content

WolfGiaS3na

Banned
  • Posts

    274
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by WolfGiaS3na

  1. Λοιπον,προτου πατισεις το κουμπι finish στην καρτελα που σε πεταει για να ξεκινησεις το checkout εχει τερμα επανω 2 επιλογες οπου λεει check out as project conficured using the new wizard,αυτην την επιλογη εχεις εσυ τικαρισμενη,το δικο μου eclipse εχει την ακριβως απο κατω επιλογη τικαρισμενη και δεν με αφινει να την ξετικαρω,λες αυτο να ειναι το προβλημα και μου βγαζει error; αυτο ειναι το μηνημα

     

    BUILD FAILED

    C:\workspace\L2J_DataPack\build.xml:54: Execute failed: java.io.IOException: Cannot run program "svn": CreateProcess error=2,      ??

     

    Total time: 1 second

     

    FOR fucking GOD of sake this already been answered 50000 times in comments.. learn search comments - description before post -.- 

  2. WolfGiaS3na  οι διευθηνσεις που υπαρχουν εδω και στο youtube  για το svn για freya(datapack και gameserver)δεν λειτουργουν(?) το μονο που λειτουργησε χωρις προβλημα ειναι αυτο http://subclipse.tigris.org/update_1.8.x    ολα τα αλα δεν ξερω γιατι δεν λειτουργουν πηγα στην διευθηνση που μας εδωσες για τα svn αντεγραψα τους συνδεσμους για freya κανω checkout και αρχιζει να κατεβαζει τα αρχεια,οταν πατισω run as,ant build τοτε αρχιζει το κακο,συνεχεια μου βγαζει build failed βγαζει κατι ακαταλαβιστικα και λεει error2,τι συμβαινει δεν ξερω

    Υπαρχουν απλα εσυ το κανεις λαθος. Γραψε στο google  " l2j all svn " και πατα το 1ο πανω πανω θα δεις ολα τα svn listed (apo to l2jserver forum)

  3. u could also add a check on enchantitem with a x radius to disable enchanting near whinstance

    smth that look like this

                  for (L2Object wh : knowns)

                  {

                  if (wh instanceof L2WarehouseInstance)

     

    with ofc a sysmsg to verify it.

     

    anyways this is not what he asked for, i guess. lameguard is ur best choise as xdem said.

    i know lg is best choise but it cost 200.. anyway u cant block phx.. is fucking program

  4. stilton edw na sou pw poso gtp einai kai giati me full analisi

    5 γραμμες κωδικας για το enchant μονο στο warehouse   if (player.getActiveEnchantItem() != null)

    {

    return;

    }

    να μην μπορει να βαλει enchanted item sto wr εχεις καμια καλυτερη ιδεα για antiphx εκτος lmg?

    γιατι θελω κ εγω

     

    *Ps βασικα μια λυση θα ηταν να blockaris unknown packets μετα απο καποιο range να τρωει ban αλλα και παλι.

  5. buy lameguard, google it and find their original site.

     

    or add Lamobob on skype. Dont trust any other shit

    Its not about trust or anything he asked for anti-bot system.. So if he want buy anti-bot system is ok to him..

    i hope he knwo what lm gurd is 

  6. Lf Dev/GM for creat one server Interlude or Final Gracia...With know Java!! pm me here or add me in Skype: Gamemaster.error ty!!

    Εισαι απλα λιγο βλακαμας.... ζητας free packs χωρις να θες να πληρωσεις μην ταλαιπωρεις τα παιδια πας LF /DEV but i dont give money

  7. Can you explan me what is this?

    1st boorinio gave you a link just download and install is because is missing subversion in ur eclipse

     

    2nd just sometimes before post copy paste error and search it on google...

              *The first http://www.l2jserver.com/forum/viewtopic.php?f=81&t=23649

              *The second   https://josm.openstreetmap.de/ticket/1735

              *The third  http://www.l2jserver.com/forum/viewtopic.php?f=94&p=153575

              *The forth   http://www.maxcheaters.com/topic/171906-eclipse-build-fail/

               e.t.c

  8. thanks for you guide wolf! +1 and i want to do it coz all low rate server has many private traders and crafters..

    Then why dont you create some some custom area into the zones.xml   give the X Y Z square 

    like you see in this image below

     

    257locm.jpg

     

    (note the red area is restricted for private stores)

    and for name of your custom area just put NO_PRIVATE_STORE (is already inside pack as area that not allowed private stores and return message)

    it is much easer than block generaly all private stores in giran..

     

     

    Ps. There is a variable inside L2PcInstance.java and a line called

             setPrivateStoreType(L2PcInstance.STORE_PRIVATE_SELL + 1);

     

    This mean that everytime a player do a private sell the variable update its sell to ++

     

    you can put a code inside SetPrivateSellStore.java that check if this variable is more than X and IF and if is bigger than 100 to return a message

    "you can't sell something right now, there are already many sellers" or something like that.. i just gave you ideas

  9. well..i will try 

    Oh btw you can add a config at this

     

    you can change this 

    if (player.isInsideZone(L2Character.TOWN_ZONE))
    {
    player.sendPacket(new PrivateStoreManageListSell(player, _packageSale));
    player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NO_PRIVATE_STORE_HERE));
    player.sendPacket(ActionFailed.STATIC_PACKET);
    return;
    }

    to this

    if Config.BLOCK_STORES_IN_TOWNS
    {
    if (player.isInsideZone(L2Character.TOWN_ZONE))
    {
    player.sendPacket(new PrivateStoreManageListSell(player, _packageSale));
    player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NO_PRIVATE_STORE_HERE));
    player.sendPacket(ActionFailed.STATIC_PACKET);
    return;
    }
    }

    just make sure to go into Java/config.java    

     

    and add  private static boolean BLOCK_STORES_IN_TOWNS;

     

    and also add this line 

    BLOCK_STORES_IN_TOWNS = Boolean.parseBoolean(L2JModSettings.getProperty("BlockStoresInTowns", "True"));

     

    and then add the BlockStoresInTowns = True   config into l2jmods.properties

  10. guide plz :)

    Just Search PrivateStore into eclipse you will find in path gameserver/clientpackets   many .java files

    you should add some kind of restriction inside them example:

    SetPrivateStroteSell.java -> Open it

     

    (bellow these)

     

    @Override
    protected void runImpl()
    {
    final L2PcInstance player = getClient().getActiveChar();
    if (player == null)
    return;

    and add these lines 

     

    if (player.isInsideZone(L2Character.TOWN_ZONE))
    {
    player.sendPacket(new PrivateStoreManageListSell(player, _packageSale));
    player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NO_PRIVATE_STORE_HERE));
    player.sendPacket(ActionFailed.STATIC_PACKET);
    return;
    }

    or you can do it in voiced command too add this restriction..

    But generaly what it does is to block private stores if player is inside TOWN_ZONES

    but why u want do this? (if i understand)

  11. Ηρεμία.

    Σοβαρα τωρα εκανες delete τα comment μας επειδη τον χλευαζουμε που ανεβαζει τελεινα παλια και ακυρα πραγματα γεμιζοντας το [share] session με σκουπιδια?

    δλδ αν εγω βρω το database του thegame (c4 του 2006) να το  κανω share εδω να αρχισουμε να γεμιζουμε το session?? βλεπω 2 page και αντι να δω κατι σοβαρο

    βλεπω shared textures. shared databases και shared precompiled god packs... 

    anyway

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock