Jump to content

SanctusCZE

Inactive Member
  • Posts

    8
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by SanctusCZE

  1. 2 hours ago, Mali said:

    This is the hidden content, please

    Reversed From 22.5.7.0

    Hidden Content

     

    ///@@@UserInterface/PythonApplication.cpp:
    
    //Find
    void CPythonApplication::Abort()
    {
    	...
    }
    
    ///Change
    void CPythonApplication::Abort()
    {
    	TraceError("============================================================================================================");
    	TraceError("Abort!!!!\n\n");
    
    	PyThreadState* tstate = PyThreadState_GET();
    	if (tstate)
    	{
    		for (PyFrameObject* frame = tstate->frame; frame; frame = frame->f_back)
    		{
    			PyCodeObject* f_code = frame->f_code;
    			if (!f_code || !f_code->co_filename || !f_code->co_name)
    				continue;
    
    			const char* filename = PyString_AsString(f_code->co_filename);
    			const char* funcname = PyString_AsString(f_code->co_name);
    			TraceError("filename=%s, name=%s", filename, funcname);
    		}
    	}
    
    	PostQuitMessage(0);
    }

     

     

     

    Old

      Hide contents

     

     

    New

      Hide contents

     

     

    Whats purpose of this? ?

    • Metin2 Dev 1
    • Love 1
  2. 7 hours ago, Gurgarath said:

     

    Those are called "common_drop". This is how the game works. You can drop them on virtually any monsters, that's why they show there. Of course, it all comes to the logic of having them in this system, is it very good to have them for every monsters, or is it even worth to have them at all displayed? That's up to you. But this is not a bug

    OK but if it show in this system, mob must drop that item. Problem is, they dont drop right items, they drop only a few drops. For example: Mob 101 drops only potion, but system shows weapons from lvl 65+, i found fix but i dont know if its right fix:

     https://www.pastebin.cz/en/p/dGB4UQm

     

    But normally its look like that:

    https://www.pastebin.cz/en/p/6qdYHnr

     

  3. 1 hour ago, SanctusCZE said:

    Hi i have a little problem with this system its work good but if you see the info, drop items seems not logic becose its shows more items even item that dont drop from that monster. But for First second show the right items, then it refresh And show wronk items. 

    Someone have solution? 

    Sorry for my bad english ?

    https://metin2.download/picture/dCyh0NwMEE0V9ZUP07MYoFu8EGL12GEb/.gif

    • Love 1
  4. Hi i have a little problem with this system its work good but if you see the info, drop items seems not logic becose its shows more items even item that dont drop from that monster. But for First second show the right items, then it refresh And show wronk items. 

    Someone have solution? 

    Sorry for my bad english ?

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