Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding

    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? /

  2. #2
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    You gib rice.
    I gib help.


    btw supply some code

  3. #3
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    can i take a look at the code
    but obviously dwcshell isnt defined

  4. #4
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    All the rice you want.

    Code:
    	if (CShellCheck != NULL)
    		{
    			if (ClientFxCheck != NULL)
    			{
    				dwCShell = CShellCheck;
    				dwClientFx = ClientFxCheck;
    
    				Ready = 1;
    			}
    		}
    
    		Sleep(200);
    	}

  5. #5
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Hmmm. Global or local?

  6. #6
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    What do you mean global or local?

  7. #7
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Quote Originally Posted by Vital View Post
    What do you mean global or local?
    Is it global or local?
    Last edited by Auxilium; 07-07-2010 at 04:21 PM.

  8. #8
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Vital View Post
    What do you mean global or local?
    like your #include
    and #define

  9. #9
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    Code:
    #include
    Does it need to be #define?

  10. #10
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    Quote Originally Posted by Vital View Post
    Code:
    #include
    Does it need to be #define?
    Dosn't #Define declare something?

  11. #11
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    So do I need

    #define dwCShell up there with the #include?

  12. #12
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    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?

  13. #13
    Auxilium's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    深い碧の果てに
    Posts
    4,518
    Reputation
    445
    Thanks
    609
    My Mood
    Happy
    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.

  14. #14
    Krypton1x's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Tacoma
    Posts
    13,296
    Reputation
    1184
    Thanks
    1,196
    My Mood
    Brooding
    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?

  15. #15
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    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.
    Last edited by CoderNever; 07-07-2010 at 04:31 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. Error when startting hacks.
    By Bargin in forum Combat Arms Help
    Replies: 9
    Last Post: 08-11-2010, 09:55 PM
  2. [SOLVED] Side-by-Side Error When Opening Hacks
    By crazorfrazor in forum Call of Duty Modern Warfare 2 Help
    Replies: 13
    Last Post: 06-29-2010, 07:29 AM
  3. Windows 7 colour scheme error when running hack
    By lasts3cond in forum Combat Arms Help
    Replies: 8
    Last Post: 04-22-2010, 05:30 AM
  4. Application error when trying hacks
    By lilchumbe in forum Combat Arms Hacks & Cheats
    Replies: 1
    Last Post: 06-16-2009, 12:41 PM
  5. I keep getting error when opening hack[HELP!!!!!!]
    By Cagamer in forum Combat Arms Hacks & Cheats
    Replies: 18
    Last Post: 12-18-2008, 09:19 PM