antiblock
Cyphriun

Glaand

Membro
  • Content Count

    3
  • Joined

  • Last visited

Everything posted by Glaand

  1. Neste tópico estará descrito como separar as janelas do cliente na barra de tarefas. Algo muito fácil de fazer e que é muito útil aos jogadores. Segue então abaixo o tutorial: Abram o ficheiro UserInterface.cpp que se encontra na pasta UserInterface da Source do Cliente. Definam no topo do ficheiro seguinte código: typedef HRESULT(__stdcall *SETCURRENTPROCESSEXPLICITAPPUSERMODELIDPROC)(PCWSTR AppID); Procurem seguinte função: "bool Main(HINSTANCE hInstance, LPSTR lpCmdLine)" Dentro dessa função após "SetLogLevel(1);" introduzam o código seguinte: OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); if (v.dwMajorVersion == 6 && v.dwMinorVersion > 1 || v.dwMajorVersion > 6) { //on Windows 7 or higher ungroup taskbar for separate process DWORD currentProcessId = GetCurrentProcessId(); WCHAR AppID[100]; swprintf(AppID, sizeof(AppID) / sizeof(AppID[0]), L"Cyber-Gamers_ID_%u", currentProcessId); HMODULE hmodShell32 = LoadLibrary("shell32.dll"); if (hmodShell32 != NULL) { // see if the function is exposed by the current OS SETCURRENTPROCESSEXPLICITAPPUSERMODELIDPROC pfnSetCurrentProcessExplicitAppUserModelID = reinterpret_cast<SETCURRENTPROCESSEXPLICITAPPUSERMODELIDPROC>(GetProcAddress(hmodShell32, "SetCurrentProcessExplicitAppUserModelID")); if (pfnSetCurrentProcessExplicitAppUserModelID != NULL) { pfnSetCurrentProcessExplicitAppUserModelID(AppID); } FreeLibrary(hmodShell32); } } E voilá: Espero ter ajudado :) Cumpz, Glaand
  2. saral, por definição, no metin2 os mapas não têm restrição atribuido ao nível. Provavelmente está definido em alguma quest a restrição de nível OU o mapa inserido está com bug e teleporta-te para cidade Cumpz.
  3. Sim. Bem, o iDevil disse-me que seria algo muito útil. Basicamente foi pesquisa de segundos xD mas solução eterna. Mais tópicos irão aparecendo.
  4. Toda gente sabe quem é o Narvikz