Results 1 to 11 of 11
  1. #1
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed

    Little Eror Help


    I keep geting this error
    fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
    I bin looking around on how to fix this error but i cant seem to fix it
    plz dont flame that this is easy go learn c++ bec i am still learning c++ as we speak
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  2. #2
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    It is sayinf thaT stdafx.h is missing /
    make a file named that (right click > add file?)

  3. #3
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed

    i dont think i am missing it I will try and rename it Hold on
    Edit/its still poping up

    Code:
    ------ Build started: Project: PID3RMAN 1.0, Configuration: Debug Win32 ------
    Compiling...
    base.cpp
    c:\documents and settings\parent\my documents\visual studio 2008\projects\pid3rman 1.0\pid3rman 1.0\base.cpp(2) : fatal error C1083: Cannot open include file: 'stdafx.h': No such file or directory
    Build log was saved at "file://c:\Documents and Settings\Parent\My Documents\Visual Studio 2008\Projects\PID3RMAN 1.0\PID3RMAN 1.0\Debug\BuildLog.htm"
    PID3RMAN 1.0 - 1 error(s), 0 warning(s)
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    Last edited by PID3RMAN; 11-03-2010 at 02:24 PM.
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  4. #4
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Make a new project and choose empty project..
    Theres a way you can disable it but i forgot how..

  5. The Following User Says Thank You to whit For This Useful Post:

    PID3RMAN (11-03-2010)

  6. #5
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed

    Thanks let me try right now
    /Edit Still Comes up Dx
    Last edited by PID3RMAN; 11-03-2010 at 03:24 PM.
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  7. #6
    Tony Stark`'s Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Chicago
    Posts
    5,365
    Reputation
    212
    Thanks
    459
    Quote Originally Posted by PID3RMAN View Post

    Thanks let me try right now
    /Edit Still Comes up Dx
    cuz im not in ur lcan

  8. #7
    PID3RMAN's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    im lost
    Posts
    1,413
    Reputation
    20
    Thanks
    107
    My Mood
    Amazed
    Quote Originally Posted by devonvanh7 View Post


    cuz im not in ur lcan


    Hahah are yhu going to post this on everthing i put
    life is a bitch then you die
    so lets all smoke weed
    [IMG]https://i965.photobucke*****m/albums/ae131/ian1mcpherson1/tumblr_lse7x0hQ6d1qcby0w.gif[/IMG]

  9. #8
    anaestheist's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    150
    Reputation
    10
    Thanks
    16
    My Mood
    Inspired
    Make a new project and don't delete stdafx.h this time? And it will work.

  10. #9
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    You chose empty project right? NOT Dll.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  11. #10
    Dieorwin's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    In My House
    Posts
    167
    Reputation
    21
    Thanks
    22
    Erase it.... lol

    so it would just be #include <windows.h>

    or whatever you got.. lol

    So the code (I suspect) you are using would be like this

    [php]#include <windows.h>
    #define Engine 0x000 //Replace 0x000 to Engine LTC

    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole(char *szCommand)
    {
    typedef int (__cdecl* RunConsoleCommand_t)(char* cmd);
    RunConsoleCommand_t RCC = (RunConsoleCommand_t)Engine; //EngineLTC;
    RCC(szCommand);
    }

    void main()
    {
    while(!IsGameReadyForHook()){
    Sleep(200);
    }
    bool FPS = false;
    while(true)
    {
    if(GetAsyncKeyState(VK_NUMPAD1)<0)
    if(FPS){
    PushToConsole("ShowFPS 0");
    FPS = false;
    }else{
    PushToConsole("ShowFPS 1");
    FPS = true;
    }

    }
    }
    BOOL APIENTRY DllMain( HMODULE hModule,
    DWORD ul_reason_for_call,
    LPVOID lpReserved)
    {
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&main, NULL, 0,NULL);
    break;
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
    break;
    }
    return TRUE;
    [/php]
    Last edited by Dieorwin; 11-03-2010 at 05:48 PM.

  12. #11
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    i told you how to fix this in msn 2 times

    make a empty win 32 project

    make shure its .dll

    and you pick empty project

Similar Threads

  1. [Help] I need a little bit help.
    By Jefjet11 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 2
    Last Post: 07-08-2011, 11:15 AM
  2. Little leveling help
    By y rangez in forum MapleStory Hacks, Cheats & Trainers
    Replies: 4
    Last Post: 09-02-2010, 08:44 AM
  3. A little bit help?
    By LeoCooper in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 10
    Last Post: 06-19-2010, 08:54 AM
  4. Need A little more help.
    By BlackRaevyn in forum Suggestions, Requests & General Help
    Replies: 1
    Last Post: 01-06-2009, 09:39 AM
  5. Little Excercise Help :P
    By phoenixraider in forum Assembly
    Replies: 0
    Last Post: 08-22-2008, 11:20 AM