Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[HELP] Problem Gunz incompatible with windows 10

Newbie Spellweaver
Joined
Jul 25, 2013
Messages
20
Reaction score
9
Hello all, first thanks for your help
My problem is when i start a game the game works good for 10/20 seconds, but later it crash and close, i was reading this post http://forum.ragezone.com/f311/igunz-source-incompatible-windows-8-a-901288/#post7413077 but it doesnt work, im trying this mode:
PHP:
bool IsWin10(){	OSVERSIONINFO osvi;	BOOL bIsWindows7orLater;	ZeroMemory(&osvi, sizeof(OSVERSIONINFO));	osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);	GetVersionEx(&osvi);	bIsWindows7orLater =		((osvi.dwMajorVersion > 6) ||		((osvi.dwMajorVersion == 6) && (osvi.dwMinorVersion >= 1)));	if (bIsWindows7orLater)	return true;	else return false;}
but it still doesnt work, could someone help me, please?
 
Back
Top