Jump to content

CiocoBoco

Inactive Member
  • Posts

    23
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by CiocoBoco

  1. Go to: /usr/src/your source/Srcs/Server/libthecore/src and open :  signal.c

     

    Search:

    RETSIGTYPE checkpointing(int sig)

    and delete:

    sys_err("CHECKPOINT shutdown: tics did not updated.");
    abort();

    Like this:

     

    old:

     

    YMQjnuU.png

     

    New:

     

     shgMMtd.png

     

    DONE

     

     

     

    This tutorial was made by AleXso

    Source: freakplay.net (no advertising)

    • Not Good 1
    • Love 2
  2. Why did you kept this?

    #ifdef ENABLE_LIMIT_TIME
    ..
    #endif
    

    Edit:

    You can also remove

    #define ENABLE_LIMIT_TIME

    from limit_time.h so you don't need to edit the files that you said

    Well spotted, but I prefer the method of alexso :) 

    Anyway, maybe I will try your method.

  3. 1. Open input.cpp and remove:

    extern bool Metin2Server_IsInvalid();
    
    and
    
    if (Metin2Server_IsInvalid())
    {
    extern bool g_bShutdown;
    g_bShutdown = true;
    ClearAdminPages();
    }
    

    like this:
    old:

    OqBhnSY.png

    New:

    d10gNKA.png

     

    2. Open Input_auth.cpp

    search: 
    Metin2Server_IsInvalid();
    and remove:
    
    extern bool Metin2Server_IsInvalid();
    and
    if (Metin2Server_IsInvalid())
    {
    extern void ClearAdminPages();
    ClearAdminPages();
    exit(1);
    return;
    }

    Like this:
    old
    ywcDhbw.png '

    new:

    UM0bRN2.png 

    search again in input_auth.cpp: 
    
    Metin2Server_IsInvalid();
    
    and delete 
    
    extern bool Metin2Server_IsInvalid();
    
    and
    
    if (Metin2Server_IsInvalid())
    {
    extern void ClearAdminPages();
    ClearAdminPages();
    exit(1);
    return;
    }

    Like this:
    old:
    SwEpwDU.png 
    new:
    9fdJwZ5.png 

     

    3. open main.cpp

    and search: 
    
    Metin2Server_IsInvalid
    
    delete:
    
    static bool g_isInvalidServer = false;
    
    and
    
    bool Metin2Server_IsInvalid()
    {
    return g_isInvalidServer;
    }
    
    and
    
    all function void Metin2Server_Check()
    
    and search in main.cpp:
    
    Metin2Server_Check();
    
    and delete it.
    

    DONE

     

    • Love 4
  4.  

    Delete this quest from every folder (object): quest horse_summon

    I had the same problem and I fixed it so.

     

    Than how is he going to summon the horse  :unsure: ?

    He needs that quest to summon the horse.

     

    Use other quest for summon. Your quest it's from a 2089M and if you look into it you will see that is a pet_system quest. "[string "horse_summon"]:1: attempt to index global `PetSystem' (a nil value) WITH ".

    It's a quest for pets with level, you can look into him and you will see.

    (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.