Error when building hack

Posts 115 of 23 · Page 1 of 2
Error when building hack
I keep getting this damn error when trying to build my hack.


1>c:\documents and settings\owner\my documents\visual studio 2008\projects\forbidden hack v1.0\forbidden hack v1.0\resources.cpp(39) : error C2065: 'dwCShell' : undeclared identifier

How do I fix this? /
You gib rice.
I gib help.


btw supply some code
can i take a look at the code
but obviously dwcshell isnt defined
All the rice you want.

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

				Ready = 1;
			}
		}

		Sleep(200);
	}
Hmmm. Global or local?
What do you mean global or local?
Quote Originally Posted by Krypton1x View Post
What do you mean global or local?
Is it global or local?
Quote Originally Posted by Krypton1x View Post
What do you mean global or local?
like your #include
and #define
Code:
#include
Does it need to be #define?
Quote Originally Posted by Krypton1x View Post
Code:
#include
Does it need to be #define?
Dosn't #Define declare something?
wow lol it seems like the people helping are confused im apauled at you whit

simple solution what do you plain to hold in this variable?
Quote Originally Posted by CoderNever View Post
wow lol it seems like the people helping are confused im apauled at you whit
Sorry brah only 3/4 done with my C++ book.
its fine, I respect you for learning by using a book instead of flaming people like some choobs do here...

You need to define your var dwCshell it most likly will be a...

Code:
bool - mostly for true/false
char - one word statement 
char* - string
int - number
DWORD - I forgot xD
so add one of the following by the includes

Code:
char dwCshell
or

Code:
char* dwCshell
etc


hope I helped goodluck with your hack vital, I wanna see a 1337 release.
OK. Let's see:

Code:
#include "stdafx.h"
#include <Windows.h>
#include <fstream>
#include <sstream>
That's what I have...

And this is my error: 1>c:\documents and settings\owner\my documents\visual studio 2008\projects\forbidden hack v1.0\forbidden hack v1.0\resources.cpp(39) : error C2065: 'dwCShell' : undeclared identifier


Here is where dwCShell is:
Code:
if (CShellCheck != NULL)
		{
			if (ClientFxCheck != NULL)
			{
				dwCShell = CShellCheck;
				dwClientFx = ClientFxCheck;

				Ready = 1;
			}
		}

		Sleep(200);
	}
What other information do you need?
Posts 115 of 23 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?