Jump to content

Helia01

Active Member
  • Posts

    217
  • Joined

  • Last visited

  • Days Won

    8
  • Feedback

    100%

Posts posted by Helia01

  1. M2 Download Center

    This is the hidden content, please
    ( Internal )

    Spoiler

    083343fdRsySL.png

     

    Hey

     

    today i will show you my new tool.
    This tool will help you find duplicate files in the client.
    At the moment, this tool does not support automatic correction of duplicates, but if the community is interested, then I will try to implement this.


    File uniqueness is verified through the md5 algorithm.
    Thus, we can see duplicate files by their contents, and not by name.

    P.S
    The idea behind this tool belongs to Kori.
     

    Spoiler

    YkMV5TQ.png

     

    This is the hidden content, please

    This is the hidden content, please

    • Metin2 Dev 34
    • kekw 1
    • Dislove 2
    • Good 13
    • Love 2
    • Love 34
  2. M2 Download Center

    This is the hidden content, please
    ( Internal 1100 )

    This is the hidden content, please
    ( Internal 1000 )

    Hey M2DEV today i will show you my pu.. oops... My program.

    This tool will allow you to fix your: ItemList file.

     

    Spoiler

    083744wlfC7jo.png

     

    before:
     

    1	ETC	icon/item/money.tga	d:/ymir work/item/etc/money.gr2
    10	WEAPON	icon/item/00010.tga	d:/ymir work/item/weapon/00010.gr2
    11	WEAPON	icon/item/00010.tga	d:/ymir work/item/weapon/00010.gr2
    71243	ETC	icon/item/71243.tga
    71243	ETC	icon/item/71243.tga
    71243	ETC	icon/item/71243.tga
    71243	ETC	icon/item/71243.tga
    71243	ETC	icon/item/71243.tga
    76051	ETC	icon/item/72321.tga
    76052	ETC	season1/icon/item/72701.tga
    76053	ETC	icon/item/70002.tga
    76054	ETC	icon/item/71011.tga
    53576	ETC	icon/item/53501.tga
    53577	ETC	icon/item/53501.tga


    after:
     

    1	ETC	icon/item/money.tga	d:/ymir work/item/etc/money.gr2
    10	WEAPON	icon/item/00010.tga	d:/ymir work/item/weapon/00010.gr2
    11	WEAPON	icon/item/00010.tga	d:/ymir work/item/weapon/00010.gr2
    53576	ETC	icon/item/53501.tga
    53577	ETC	icon/item/53501.tga
    71243	ETC	icon/item/71243.tga
    76051	ETC	icon/item/72321.tga
    76052	ETC	season1/icon/item/72701.tga
    76053	ETC	icon/item/70002.tga
    76054	ETC	icon/item/71011.tga

     

    This is the hidden content, please

    This is the hidden content, please


    Q: What's new in version 1.1.0.0?
    A: 

    1. Now tool  use drag and drop.
    2. Support other files (struct: int[tab]..some) like item_desc.txt and etc...
    3. Now you can drag and drop and fix over more 1 file at a time.
    4. Duplicate count is displayed now

     

    Old version here

    Spoiler

    This is the hidden content, please

    This is the hidden content, please

     

    • Metin2 Dev 17
    • Confused 1
    • Lmao 1
    • Good 5
    • Love 1
    • Love 32
  3. 2 hours ago, BYB said:

     

    
    SYSERR: Jul 28 16:01:27 :: ReadSpecialDropItemFile: ReadSpecialDropItemFile : there is no item 110010 : node 백룡강력한용혼원석_일반-화려
    SYSERR: Jul 28 16:01:27 :: Boot: cannot load SpecialItemGroup: locale/turkey/special_item_group.txt

     

    RLY???
    CHECK F?CKING FILE:  locale/turkey/special_item_group.txt
     

    • Love 1
  4. 25 minutes ago, Koray said:

    Just use your brain and follow the possible steps;

    Look for the error message you received and see why it made an error

      Reveal hidden contents

    uVtNTW.png

    Look for references that use container's insert function

      Reveal hidden contents

    HO8gUt.png

    Search for references with using the function found

      Reveal hidden contents

    qbI5tc.png

    And you have found whitelisted extensions and as you can see, ".mse" does not exist.

    I don't think anyone needs to show it, I guess it's not hard?

    ahahah :D

    • Metin2 Dev 1
  5. 14 minutes ago, iMeleys said:

    you are right.. if i try to block users and make a maintaince
    the blocked users will be free again...

    Maybe a Solution: Does it give a MYSQL command to ignore the users with the value "BLOCK" ?

    UPDATE account.account SET status = "MAINTENANCE" WHERE login NOT IN (SELECT mAccount FROM common.gmlist) AND status NOT LIKE "BLOCK";

     

    UPDATE account.account SET status = "OK" WHERE status NOT LIKE "BLOCK";

    try this.

    • Love 1
  6. 1 hour ago, iMeleys said:

    wow.. (writing my text for nothing "yeah meleys think over it")

    I am not seeing that option before in my mind..
    you can simply run the command over the mysql command line
    awesome you are great thank you for saying me it ! i love you xD
     

    Just open: root->intrologin.py

    #find this
    "BLOCK"		: localeInfo.LOGIN_FAILURE_BLOCK_ID,
    
    #and add this after
    
    "MAINTENANCE"	: localeInfo.LOGIN_FAILURE_MAINTENANCE,


    and add this into your locale: locale_game.txt
     

    LOGIN_FAILURE_MAINTENANCE    Server maintenance is in progress.


    Open Navicat press F5 (open Console and RUN this SQL command):

    ALTER TABLE account.account MODIFY COLUMN status varchar(11) NOT NULL;

     

    Now You must do this SQL command for maintenance:

    UPDATE account.account SET status = "MAINTENANCE" WHERE login NOT IN (SELECT mAccount FROM common.gmlist);

    AFTER MAINTENANCE RUN THIS SQL:
     

    UPDATE account.account SET status = "OK";

    aGt0WKF.png

     

    Enjoy! ?

    • Love 2
  7. Spoiler
    17 minutes ago, Mali61 said:

        So many PServer's packs unpacked with "pack" method. Example

    What is the pack method?:

        Game is using pack method when load .py, .pyc and .txt files. Just look at the system.py

    Why Simple?

        Because we'll just change the method name. Gf did like this little changes example: playerm2g2, chatm2g, m2netm2g ....

    Go UserInteface/PythonPackModule.cpp and find:

    
    
    	Py_InitModule("pack", s_methods);

    And change "pack" whatever you want. I'm gonna say "examplename"

    Go root/system.py and find:

    
    
    import pack

    Change like this;

    
    
    import examplename as pack

    That's all. That was the simplest idea I could think of.

    It's very simplest idea :3
    work well if used along with fix python injection (mode python27.dll file) & check md5 (client files).

  8. 34 minutes ago, WeedHex said:

    Thanks for share but there are already softwares to do it more fast.

    My tool is looking for the key for all the lines in the file, as far as I know the same plug-in compare in notepad ++ does a simple string comparison.

    For Example (MY TOOL)

    F3a7ray.png

    VS (SHIT NOTEPAD++)
    MEfa6g7.png

    • Good 1
    • Love 1
  9. M2 Download Center

    This is the hidden content, please
    ( Internal )

    Hi, today I want to show you a tool for comparing files such as:

     

    • locale_game.txt
    • locale_interface.txt
    • item_names
    • mob_names
    • and etc...

     

    Struct

    KEY[TAB]VALUE

     

    Spoiler

    0816216M1pkno.png



    This is the hidden content, please

    This is the hidden content, please

     

    Spoiler

     

    For example:

    We have 2 files.

     

     

    081621WDniUTu.png

     

    Open Tool choose files and press button COMPARE

     

     

    081621tFRu90W.png

     

    Now near tool file we have new file: Helia01ComparisonResult.txt

    0816213d3jogf.png

    Open file and check compare :3

     

    081621HNFLwzJ.png

     

    • Metin2 Dev 29
    • kekw 1
    • Dislove 1
    • Good 11
    • Love 2
    • Love 21
  10. 15 hours ago, Maurage said:

    Hello everyone,

    I come to you because his problems I do not come at all to the rule. It is several days that I look for a solution but impossible to find!

    https://metin2.download/picture/e38J0Z06I8B584SqGuOXrYl2mjy0j4Gj/.png

    Thank's you

    Hey

    1. ENABLE VT-V/AMD-V (BIOS)

    2. DISABLE HYPER-V (WINDOWS) - Because it’s a peace of shit

    3. Enjoy

     

  11. 9 hours ago, Speachless said:

    It's time to act like criminals buy russian servers, hide under vpns, give falsa data. Live in a cave

    ahahahahahah 

    I live in Russia, recently wanted to open a server, now we will think what to do next ...
    Maybe it will not affect us?
    (GTranslate ?).

×
×
  • 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.