Jump to content

Abigo

Inactive Member
  • Posts

    32
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Abigo

  1. 42 minutes ago, Dobrescu Sebastian said:

    I already gave you the topic for argument start, use your brain.

    don't speak about brain when you are brain dead

    ON:

    search in userinterface.cpp

    int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
    {

    add under

    	if (strstr(lpCmdLine, "anything_you_want") == 0)
    		return 0;

    just like in that tutorial

    and in your autopatcher you might have something like this

    Start("metin2client.exe");

    change it to

    Start("metin2client.exe", "anything_you_want");

     

  2. hello mr [dev]twix, google is your friend, start using it not for just searching free posted tutorials/system to sell them but also to learn something

    " char_item.cpp:4791: error: duplicate case value
    char_item.cpp:4526: error: previously used here "

    this is pretty obvious, you have two times the same case or something like this "case a || b", also learn to read

    " char_item.cpp:4926: error: 'item2' was not declared in this scope "

    when you declare a value in an if statement, you can't use it outside of it

    "char_item.cpp:5069: error: break statement not within loop or switch"

    break must be inside of a loop (for,while, do while) or a switch statement, why make some effort and read the errors, when you can ask other people for help right?

    " char_item.cpp:5071: error: case label 'ITEM_METIN' not within a switch statement "

    a case outside a switch statement

    char_item.cpp:5235: error: expected unqualified-id before 'return'

    need to see the code for this, might be a syntax error

    "char_item.cpp:5236: error: expected declaration before '}' token "

    same

  3. 20 hours ago, RealReznov said:

    Mee to. Anyone know SERVER-SIDED WORKING solution?

    are you blind can't you read this?

    just by reading this you can see it's working

    if (CBanwordManager::instance().CheckString(m_stOfflineShopSign.c_str(), m_stOfflineShopSign.length()))
    {
    ChatPacket(CHAT_TYPE_INFO, ("Doar litere si cifre in numele shop-ului."));
    return;
    }

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