Jump to content

tmoitoi

Inactive Member
  • Posts

    158
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by tmoitoi

  1. Hi there, 

     

    Here a solution to hide all the useless error of Granny.

     

    Open UserInterface.cpp from UserInterface, after have doing the tutorial search: void GrannyError(granny_log_message_type Type,

     

    and comment the contents like it:

    //static void GrannyError(granny_log_message_type Type,
    // granny_log_message_origin Origin,
    // char const*  File,
    // granny_int32x Line,
    // char const* Message,
    // void * UserData)
    //{
    // TraceError("GRANNY: %s", Message);
    //}

    and a little down:

    // granny_log_callback Callback;
    //   Callback.Function = GrannyError;
    //   Callback.UserData = 0;
    //   GrannySetLogCallback(&Callback);
    return 1;

    Regards, Vamos.

    • Love 2
  2. When I put a sword this error, anyone know how to fix?

     

     

    GRANNY: Unable to find matching track_group for Model: "weapon_chogeup_01" in Animation: "D:zwork¹ÚÀç°ü3¿ù21ÀÏÀÌÈÄÀǼöÁ¤¾Ö´Ï¸ÞÀ̼ǹ«»ç ij¸¯ÅÍ ¼öÁ¤¾Ö´Ï¸ÞÀ̼Çonehand_swordwait.max"

     

    Here a solution to hide all the useless error of Granny.

     

    Open UserInterface.cpp from UserInterface, after have doing the tutorial search: void GrannyError(granny_log_message_type Type,

     

    and comment the contents like it:

    //static void GrannyError(granny_log_message_type Type,
    // granny_log_message_origin Origin,
    // char const*  File,
    // granny_int32x Line,
    // char const* Message,
    // void * UserData)
    //{
    // TraceError("GRANNY: %s", Message);
    //}

    and a little down:

    //  granny_log_callback Callback;
    //   Callback.Function = GrannyError;
    //   Callback.UserData = 0;
    //   GrannySetLogCallback(&Callback);
    return 1;

    Regards, Vamos.

    • Angry 1
    • Love 5
  3. Hi there, some people doesn't find how to remove the system who disable the chat using while we do a trade

    (For fix any hack trade maybe but it doesn't exist then..)

    So here a little tutorial to remove this.

     

    Open your input_main.cpp

     

    Search this line: int processReturn = ProcessTextTag(ch, buf, buflen);

     

    And then you've to make comment all the line to return iExtraLen;

     

     

    It should be like it:

    /*int processReturn = ProcessTextTag(ch, buf, buflen);
    if (0!=processReturn)
    {
    if (ch->GetDesc())
    {
    TItemTable * pTable = ITEM_MANAGER::instance().GetTable(ITEM_PRISM);
    
    
    
    
    if (pTable)
    {
    char buf[128];
    int len;
    if (3==processReturn) //교환중
    len = snprintf(buf, sizeof(buf), LC_TEXT("사용할수 없습니다."), pTable->szLocaleName);
    else
    len = snprintf(buf, sizeof(buf), LC_TEXT("%s이 필요합니다."), pTable->szLocaleName);
    
    
    
    
    if (len < 0 || len >= (int) sizeof(buf))
    len = sizeof(buf) - 1;
    
    
    
    
    ++len;  // 0 문자 포함
    
    
    
    
    TPacketGCWhisper pack;
    
    
    
    
    pack.bHeader = HEADER_GC_WHISPER;
    pack.bType = WHISPER_TYPE_ERROR;
    pack.wSize = sizeof(TPacketGCWhisper) + len;
    strlcpy(pack.szNameFrom, pinfo->szNameTo, sizeof(pack.szNameFrom));
    
    
    
    
    ch->GetDesc()->BufferedPacket(&pack, sizeof(pack));
    ch->GetDesc()->Packet(buf, len);
    
    
    
    
    sys_log(0, "WHISPER: not enough %s: char: %s", pTable->szLocaleName, ch->GetName());
    }
    }
    
    
    
    
    // 릴래이 상태일 수 있으므로 릴래이를 풀어준다.
    pkDesc->SetRelay("");
    return (iExtraLen);
    }*/
    ?/*int processReturn = ProcessTextTag(ch, chatbuf, len);
    if (0!=processReturn)
    {
    const TItemTable* pTable = ITEM_MANAGER::instance().GetTable(ITEM_PRISM);
    
    
    
    
    if (NULL != pTable)
    {
    if (3==processReturn) //교환중
    ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("사용할수 없습니다."), pTable->szLocaleName);
    else
    ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("%s이 필요합니다."), pTable->szLocaleName);
    
    
    
    
    }
    
    
    
    
    return iExtraLen;
    }*/

    Hope it will help you guys :)

    • Love 3
  4. I've already tryed it but you will call me newb :P but I've some problems with the novaline source, maybe I do some things wrong I don't know.

     

    If anyone can help me to it or to fix the problems of my current source, I will do my best to pay if u want it, thanks in advance.

     

     

    Or if you have any link for the novaline src with the link of external libs and files already included ? I think my problem is with visual studio the new version has a strange working system

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