Jump to content

Abigo

Inactive Member
  • Posts

    32
  • Joined

  • Last visited

  • Feedback

    0%

About Abigo

Informations

  • Gender
    Male

Recent Profile Visitors

852 profile views

Abigo's Achievements

Apprentice

Apprentice (3/16)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

7

Reputation

  1. if (strstr(lpCmdLine, "anything_you_want") == 0) return 0; not if (strstr(lpCmdLine, "anything_you_want") != 0) return 0; see the difference between "==" and "!="
  2. sorry my bad, Process.Start("MoM.exe", "anything"); you can replace all this Process startProcess = new Process(); startProcess.StartInfo.FileName = Globals.BinaryName; startProcess.StartInfo.UseShellExecute = false; startProcess.Start(); with just this Process.Start("mom.exe", "anything");
  3. in sanchez autopatcher search in Starter.cs startProcess.Start(); change to startProcess.Start("MoM.exe", "anything_you_want"); and delete startProcess.StartInfo.FileName = Globals.BinaryName;
  4. 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");
  5. if (GetMapIndex() == index_map) { ChatPacket(CHAT_TYPE_INFO, LC_TEXT("You can't open a shop in this map")); return; } add this in the open shop function
  6. 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 valuechar_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
  7. The page you are trying to access is not available for your account.
  8. I read it man check this out it's working , I tested it [Hidden Content]
  9. if you use google and your brain you will succed
  10. f*ck off liar , if you bought this from ken he would give you fixed and if you buy something from someone and you have bug with that system ask for that person to fix
  11. 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.