Just Something For People That Dont Know How To Fix
Just a little something for most people that are new or just dlont know how to fix. Where you compiled the source and you open the game and you cant type anything, well this is the solution. Just follow this:
Open Up your gunz source, go to Gunz >> Game >> ZGlobal.cpp. CTRL + F (make sure its on "Current Project) and search for "ShowWidget("Login_Logo", false);" (Without The "") then do the following.
Find This Code
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Replace With
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Hope This Helped
Credits:
MAIET - For The Source
Anyone that helped me in the past
Re: Just Something For People That Dont Know How To Fix
Quote:
Originally Posted by
Duluxe
Just a little something for most people that are new or just dlont know how to fix. Where you compiled the source and you open the game and you cant type anything, well this is the solution. Just follow this:
Open Up your gunz source, go to Gunz >> Game >> ZGlobal.cpp. CTRL + F (make sure its on "Current Project) and search for "ShowWidget("Login_Logo", false);" (Without The "") then do the following.
Find This Code
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Replace With
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Hope This Helped
Credits:
MAIET - For The Source
Me - Finding the fix and Releasing
Anyone else thats helped me in the past
And where did you "find" the fix?
Re: Just Something For People That Dont Know How To Fix
.... you just replaced a few falses with trues
Re: Just Something For People That Dont Know How To Fix
Quote:
Originally Posted by
Duluxe
Just a little something for most people that are new or just dlont know how to fix. Where you compiled the source and you open the game and you cant type anything, well this is the solution. Just follow this:
Open Up your gunz source, go to Gunz >> Game >> ZGlobal.cpp. CTRL + F (make sure its on "Current Project) and search for "ShowWidget("Login_Logo", false);" (Without The "") then do the following.
Find This Code
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", false);
ShowWidget("LoginID", false);
ShowWidget("Label_Password", false);
ShowWidget("LoginPassword", false);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Replace With
Code:
#if defined(_DEBUG) || defined(_RELEASE)
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
#else
ShowWidget("Login_Logo", false);
ShowWidget("Label_ID", true);
ShowWidget("LoginID", true);
ShowWidget("Label_Password", true);
ShowWidget("LoginPassword", true);
ShowWidget("LabelServerIP", false);
ShowWidget("ServerAddress", false);
ShowWidget("ServerPort", false);
Hope This Helped
Credits:
MAIET - For The Source
Me - Finding the fix and Releasing
Anyone else thats helped me in the past
does not work even with the language is rare in the display is loading and not able to enter even says "can not acess server".
Re: Just Something For People That Dont Know How To Fix
you must search for the code that Read those fields and check if Gunz is reading it "correctamente".
Re: Just Something For People That Dont Know How To Fix
This is not a debate, im just helping a few people that dont know how to do it