Jump to content

metin2team

Inactive Member
  • Posts

    429
  • Joined

  • Last visited

  • Days Won

    15
  • Feedback

    0%

Posts posted by metin2team

  1. the python link is just the built-in functions in the client's source. (C++/python)

    if I understood it right, the api you're talking about is in the link below look for the code tag below.

    This is the hidden content, please

    if (bHeader == HEADER_CG_TEXT)

    that's the api you're looking for and if you want to add stuff you should add them there.

    good luck.

    • Metin2 Dev 16
    • Cry 1
    • Good 6
    • Love 5
  2.  applyvalue0, applytype1, applyvalue1, applytype2, applyvalue2, applytype3, applyvalue3, applytype4, applyvalue4, applytype5, applyvalue5, applytype6, applyvalue6, applytype7, applyvalue7 

    Do you have a sash system? if yes please make sure that you have those fields in your "player.item" table.

     

    also this

    Can't connect to local MySQL server through socket '/tmp/mysql.sock' (61)

    your mysql server went down or something is wrong.

     

    if there's a crash you should include the game.core lines, too.

  3. 28 minutes ago, Kraaz said:

    Firstly: How can i convert my pack files? (from .msi and .ini to .eix .epk)

    It's not a matter of converting you should change that in the client's source. Then, you can rename all the *.msi to *.eix and so on.

    About the error, you should reverse the steps you've done before the crash.

    If you are using the source and you're the one compiled the Client, try to solve it using a python file along with metin2client.map in the leaked source. it will tell you which function exactly has the thing caused the crash.

    good luck.

  4. 1 hour ago, Mind Rapist said:

    how can I send a request from the gameserver (FreeBSD) to an external server (Windows)?

    If I understood it right.. you should do it the other way around.

    Windows server -> FreeBSD (game) server.

    which means .. Windows server requests the channels data and the FreeBSD returns the values or an xml file which will be saved by the windows server.

    and you can use the API for that :)

    good luck.

  5. On 9/25/2016 at 11:12 PM, HisaoShou said:

    Request 1: I need to know how could I remove some buttons in game options. (Example: removing GPU and CPU buttons from game options menu)

    root -> uiSystemOption.py or the uiscript file related to it.

    On 9/25/2016 at 11:12 PM, HisaoShou said:

    Request 2: I want to (for example) that when clicking on player, on the top options (whisper, trade, and so on) that the button Emotion to launch a certain quest instead of emotion. (i will make the quest but i need the way how could i do that).  How could I do this?

    You should check root -> uiTarget.py

    Quest-Client communication(for any version)

  6. Spoiler

                char szItemQuery[512];
                snprintf(szItemQuery, sizeof(szItemQuery), "SELECT id, pos, count, vnum, is_gm_owner%s, socket0, socket1, socket2, "
                    "attrtype0, attrvalue0, attrtype1, attrvalue1, attrtype2, attrvalue2, attrtype3, attrvalue3, attrtype4, attrvalue4, "
                    "attrtype5, attrvalue5, attrtype6, attrvalue6 FROM item WHERE window = %u AND owner_id = %u",
                    szQueryExtra, GUILD_SAFEBOX, dwGuildID);

    That's with the GuildID not to create a whole new table the creator used the player.item table.

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.