Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/19/19 in all areas

  1. M2 Download Center Download Here ( Internal ) I erased the mesh with hairstyle from the armor. Download: Here Password: just4metin
    1 point
  2. I noticed embedded ingame browser is compatibility mode IE 7 by default, looked aroud the net and it seems that there's not so much detailed information about it. The best way would be to get your hands on chromium or something like that, but its a rather time sinking activity and since internet explorer emulated version can be easily changed with a new registry key i opted toward this solution. However (apparently, I actually searched very few sites) it seems that noone has ever mentioned it thus I decided to share the know-how with you. If anyone is interested this is a very simple example (very raw i suggest to at very least modify it): In UserInterface.cpp before bool Main(HINSTANCE hInstance, LPSTR lpCmdLine) void SetInternetRegKey() { LONG status; HKEY hKey; status = RegOpenKeyEx(HKEY_CURRENT_USER, TEXT("Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION"), 0, KEY_ALL_ACCESS, &hKey); if ((status == ERROR_SUCCESS) && (hKey != NULL)) { DWORD standard = 11000; DWORD version; DWORD size = sizeof(version); DWORD type = REG_DWORD; status = RegQueryValueEx(hKey, TEXT("YOURCLIENTEXECUTABLEFILE.EXTENSION"), NULL, &type, (BYTE*)&version, &size); if (status != ERROR_SUCCESS) { status = RegSetValueEx(hKey, TEXT("YOURCLIENTEXECUTABLEFILE.EXTENSION"), NULL, REG_DWORD, (BYTE*)&standard, sizeof(standard)); if (status != ERROR_SUCCESS) { } } RegCloseKey(hKey); } } then in bool Main at the beginning add SetInternetRegKey(); bool Main(HINSTANCE hInstance, LPSTR lpCmdLine) { SetInternetRegKey(); <--------- here This will add a registry value for FEATURE_BROWSER_EMULATION (YOURCLIENTEXECUTABLEFILE.EXTENSION, 11000) which will tell browser to emulate IE 11 at the launch of the executable and only once. As I said above this is very raw and won't autodetect latest avaible IE and many other lacks which you can clearly see. All documentation about IE registry key for version/svcVersion can be found here [Hidden Content] Do your homework (just a few hours i think) and you will have your nice and clean browser emulation to latest avaible IE version or use it as it is and have a poor compatibilty still working IE11 browser. Hope you find this useful, Have a nice day.
    1 point
  3. Is not that hard ... the font is free, the shape behind it's done piece by piece and the style of it its just simple. I'll check for you tho.
    1 point
  4. reformatted + passable hex value as arg [Hidden Content]
    1 point
  5. Hi can someone give me server and client query for 6,7 bonus (71051,71052 items),i am use 40k gamefile...thanks
    1 point
×
×
  • 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.