Error when building hack

Posts 1623 of 23 · Page 2 of 2
DWORD fixed it, now this damn error:

Code:
fatal error C1075: end of file found before the left brace '{' at
it means you have un even brackets that don't match up...try adding a "}" at the end and compile
I do...

Code:
{
			if (ClientFxCheck != NULL)
			{
				DWORD dwCShell = CShellCheck;
				DWORD dwClientFx = ClientFxCheck;

				Ready = 1;
			}
		}

		Sleep(200);

		}
That's the end of my code.
Code:
if (ClientFxCheck != NULL)
			{
				DWORD dwCShell = CShellCheck;
				DWORD dwClientFx = ClientFxCheck;

				Ready = 1;
			}
		}

		Sleep(200);

		}
just try adding one more bracket it might be the solution

so..
Code:
if (ClientFxCheck != NULL)
			{
				DWORD dwCShell = CShellCheck;
				DWORD dwClientFx = ClientFxCheck;

				Ready = 1;
			}
		}

if im right...this is a nobo explaination btw xD...for every "{" you need a "}" and that error is saying you have a "{" that does not have a "}" to end it

		Sleep(200);

		}
}
Holy shit, it worked. Thanks so much!
Yeah for future reference for every "{" you need a "}" and that exact error was saying it hit the end of the file but you still did not competle the pattern of having a "}" for every "{" so adding that one fixed it. I'm glad I could help, and I hope you release a sick hack to mpgh.

/sloved
/close
Quote Originally Posted by CoderNever View Post
/sloved
/close
/Moved to help section & /Closed .
i believe if i remember DWORD means Double word
Posts 1623 of 23 · Page 2 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?