Page 18 of 21 FirstFirst ... 81617181920 ... LastLast
Results 256 to 270 of 308
  1. #256
    pikamew4's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Canada
    Posts
    157
    Reputation
    10
    Thanks
    37
    My Mood
    Devilish

    Exclamation

    When I put any addies, there is no red line under any thing, but when i compile i get this: fatal error LNK1120

    Full compile error:

    1>------ Build started: Project: CaBase, Configuration: Release Win32 ------
    1> Base.cpp
    1>Base.obj : error LNK2001: unresolved external symbol "class cBase Base" (?Base@@3VcBase@@A)
    1>C:\Users\Randy-Administrator\Desktop\Hans & Gellins Base Combined\Release\CaBase.dll : fatal error LNK1120: 1 unresolved externals
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

    And this is my Base.cpp:

    #include "Base.h"
    #include "Menu.h"

    //Menu Position
    int menux = 20;
    int menuy = 200;

    //Hack Variables
    int test1 = 0;
    int test2 = 0;
    int test3 = 0;
    int test4 = 0;
    int test5 = 0;
    int test6 = 0;

    //Menu Groups
    int misc = 0;
    int removals = 0;
    int visual = 0;


    void cMenu::RenderMenu(void)
    {
    AddItem(" [ Visuals ]", Opt_Folder, &visual, 2, MENUFOLDER);
    if(visual){
    AddItem("nxchams" , Opt_on_off , &test1 , 2, MENUITEM);//
    AddItem("Wireframe" , Opt_on_off , &test2 , 2 , MENUITEM);//
    }

    AddItem(" [ Removals ]", Opt_Folder, &removals, 2, MENUFOLDER);
    if (removals) {
    AddItem("Removal One" , Opt_on_off , &test3 , 2, MENUITEM);//
    AddItem("Removal Two" , Opt_on_off , &test4 , 2, MENUITEM);//
    }
    AddItem(" [ Misc ]", Opt_Folder, &misc, 2, MENUFOLDER);
    if(misc){
    AddItem("OPK" , Opt_on_off , &test5 , 2, MENUITEM);//
    AddItem("Remote TK" , Opt_on_off , &test6 , 2, MENUITEM);//
    }
    }


    void __cdecl cBase::PushToConsole(const char* szCommand )
    {
    DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
    if( dwCShell != NULL )
    {
    DWORD *LTClient = ( DWORD* )( 0x377E7810 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    }
    void cBase::Update(void)
    {
    while(1)
    {
    if("nxchams" > 0 )
    {
    this->PushToConsole("SkelModelStencil 1" );
    } else {
    this->PushToConsole("SkelModelStencil 0" );
    }
    Sleep(100);

    }
    }
    void cBase::RenderFrame(LPDIRECT3DDEVICE9 pDevice)
    {

    if(Directx.pFont == NULL)
    D3DXCreateFontA(pDevice, 15, 0, FW_BOLD, 0, 0, DEFAULT_CHARSET, OUT_TT_ONLY_PRECIS, PROOF_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "Arial Black", &Directx.pFont );

    if (Mmax==0) Menu.RenderMenu();
    if(Mvisible){
    //Do You Gui/Drawbox Here
    }

    Menu.MenuShow(menux,menuy,Directx.pFont);
    Menu.MenuNav();
    }

    DWORD cBase::GetPointer(int index)
    {
    DWORD* devicePtr = ***(DWORD****)0x909EF8;

    if( devicePtr == NULL )
    return 0;

    return devicePtr[index];
    }

    bool cBase::IsGameReadyForHook(void)
    {
    if( GetModuleHandle( "d3d9.dll" ) != NULL
    && GetModuleHandle( "ClientFX.fxd" ) != NULL
    && GetModuleHandle( "CShell.dll" ) != NULL )
    return true;

    return false;
    }

    DWORD WINAPI dwMainThread(LPVOID)
    {
    while ( !Base.IsGameReadyForHook() )
    Sleep(iWaitTime);

    Directx.Hook();
    Base.Update();

    return 0;
    }

    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);

    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    #ifdef LOG
    DeleteFile(LogPath);
    #endif

    CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    HELP /me
    ]This will be my future MPGH user name
    [MPGH]pikamew4

    w000tttt!!!!!

    2doo-list

    {become a mod on mpgh}[]
    {become admin on MPGh}[]
    {be kicked from combat arms}[]
    {make a private VIP hack with telekill for myslf}mad:
    {meet Dave on MPGH}[]
    {learn c++}
    {become a newb on MPGH}[]
    {become a member on MPGH}[]
    {**** up my profile with a lame picture}[]
    -------------------------------
    Starting PHOTOSHOP CS5

    [IMG]https://i1141.photobucke*****m/albums/n593/pikamew4/MPGH.jpg?t=1286152941[/IMG]

    Status: Working On Pub menu hack with OPK 0_o!!


  2. #257
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Try Putting cBase Base; After The Hack Variables

    Why Are You Putting this->PushToConsole I Removed Thats
    Just Do PushToConsole

  3. #258
    pikamew4's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Canada
    Posts
    157
    Reputation
    10
    Thanks
    37
    My Mood
    Devilish
    Quote Originally Posted by whit View Post
    Try Putting cBase Base; After The Hack Variables

    Why Are You Putting this->PushToConsole I Removed Thats
    Just Do PushToConsole
    Sorry man, Im new to coding, but i gat a bit of expiriance.

    So what do u meen by cBase Base;??

    After stencils thing or where,??
    In this?
    AddItem(" [ Visuals ]", Opt_Folder, &visual, 2, MENUFOLDER);
    if(visual){
    AddItem("nxchams" , Opt_on_off , &test1 , 2, MENUITEM);//
    AddItem("Wireframe" , Opt_on_off , &test2 , 2 , MENUITEM);//


    Or that:
    void cBase::Update(void)
    {
    while(1)
    {
    if("nxchams" > 0 )
    {
    this->PushToConsole("SkelModelStencil 1" );
    } else {
    this->PushToConsole("SkelModelStencil 0" );
    }
    Sleep(100);

    }
    }
    Or that:

    //Hack Variables
    int test1 = 0;
    int test2 = 0;
    int test3 = 0;
    int test4 = 0;
    int test5 = 0;
    int test6 = 0;
    Ohh and could you show me like, your base??

    If you dont want public, could u PM me?? thx man, ill add rep
    Last edited by pikamew4; 10-03-2010 at 10:39 AM.
    ]This will be my future MPGH user name
    [MPGH]pikamew4

    w000tttt!!!!!

    2doo-list

    {become a mod on mpgh}[]
    {become admin on MPGh}[]
    {be kicked from combat arms}[]
    {make a private VIP hack with telekill for myslf}mad:
    {meet Dave on MPGH}[]
    {learn c++}
    {become a newb on MPGH}[]
    {become a member on MPGH}[]
    {**** up my profile with a lame picture}[]
    -------------------------------
    Starting PHOTOSHOP CS5

    [IMG]https://i1141.photobucke*****m/albums/n593/pikamew4/MPGH.jpg?t=1286152941[/IMG]

    Status: Working On Pub menu hack with OPK 0_o!!


  4. #259
    dllbase's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    IN YOUR %#$
    Posts
    117
    Reputation
    10
    Thanks
    19
    My Mood
    Cool
    Thanks guy it is very important

  5. #260
    Capevaldo's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    CWBeats
    Posts
    5,523
    Reputation
    242
    Thanks
    1,150
    My Mood
    Drunk
    Someone helps me!
    I have this problem:

    Code:
    ------ Build started: Project: CaBase, Configuration: Debug Win32 ------
    Compiling...
    Base.cpp
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\base.cpp(26) : error C2664: 'cMenu::AddItem' : cannot convert parameter 5 from 'const char [17]' to 'int'
            There is no context in which this conversion is possible
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\base.cpp(91) : error C2664: 'GetModuleHandleW' : cannot convert parameter 1 from 'const char [9]' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\base.cpp(92) : error C2664: 'GetModuleHandleW' : cannot convert parameter 1 from 'const char [13]' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\base.cpp(93) : error C2664: 'GetModuleHandleW' : cannot convert parameter 1 from 'const char [11]' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    DirectX.cpp
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\directx.cpp(26) : error C2664: 'ID3DXFont::DrawTextW' : cannot convert parameter 2 from 'char [1024]' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    Menu.cpp
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\menu.cpp(78) : error C2664: 'ID3DXFont::DrawTextW' : cannot convert parameter 2 from 'char *' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\menu.cpp(81) : error C2664: 'ID3DXFont::DrawTextW' : cannot convert parameter 2 from 'char *' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    c:\documents and settings\administrador\desktop\hans & gellins base combined\cabase\menu.cpp(83) : error C2664: 'ID3DXFont::DrawTextW' : cannot convert parameter 2 from 'char *' to 'LPCWSTR'
            Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    Misc.cpp
    Generating Code...
    Build log was saved at "file://c:\Documents and Settings\Administrador\Desktop\Hans & Gellins Base Combined\CaBase\Debug\BuildLog.htm"
    CaBase - 8 error(s), 0 warning(s)
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    Last edited by Capevaldo; 10-09-2010 at 08:05 PM.

  6. The Following User Says Thank You to Capevaldo For This Useful Post:

    CanYouDoIt (10-10-2010)

  7. #261
    QQiswhyihack's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    If i told you, i'd have to kill you :)
    Posts
    134
    Reputation
    10
    Thanks
    61
    My Mood
    Asleep
    says to my visual baisc 2008 ineed newer version, wtf =\ ?
    RespectsList
    MrSkaFighter
    Spook
    CoderNever

    Thank You for This sig, Peter/Vengeance.

    Uploaded with ImageShack.us
    Respect Aint Easy to earn, helpful people are always loyal.
    Goals
    Get 50 post []
    get 100 post []
    get 150 post []
    get 200 post []
    Make a Auto-On Hack []
    Release My first hack []
    Make a hotKey hack []
    Make a menu-hack []
    Hack, not get called a hacker []
    Hack, get QQed at and lol []
    Be known on MPGH [] -Unknown.
    Yes i have a long goal list, but a long goal list is someone who wants to accomplish alot of things..

  8. #262
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Thanks, this what I did with the menu so far, it's still in development (adding more hacks, DrawBox, etc...)



    Again Thanks Whit
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  9. #263
    dllbase's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    IN YOUR %#$
    Posts
    117
    Reputation
    10
    Thanks
    19
    My Mood
    Cool
    YESS i was searching it THANKS!

  10. #264
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    This is what I did with this base:


  11. #265
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Quote Originally Posted by ᴺᴼᴼᴮ View Post
    This is what I did with this base:

    Looks pretty sick.

  12. #266
    wicho_koz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    193
    Reputation
    12
    Thanks
    52
    My Mood
    Shocked
    nice hack o.0

  13. #267
    -InFinity's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Dominican Republic.
    Posts
    1,198
    Reputation
    -49
    Thanks
    63
    My Mood
    Chatty
    YAY i love it!, but first i need to learn how to do an auto





    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpghm.gif[/IMG]
    [IMG]https://img.photobucke*****m/albums/v470/Chronologix/Sig/mpgha.gif[/IMG]


    Use My Free VIP Hacks!

    Here Are My Free VIP Hacks.

  14. #268
    QQiswhyihack's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    If i told you, i'd have to kill you :)
    Posts
    134
    Reputation
    10
    Thanks
    61
    My Mood
    Asleep
    Quote Originally Posted by deathninjak0 View Post
    Looks pretty sick.
    Wow man looks sweeet.. i wanna change the menu loook having trouble, PM me your msn, and gimme a hand, if not i'll keep trying
    I love this base though, helped me SO much!
    Thanks Whit;
    ;D
    RespectsList
    MrSkaFighter
    Spook
    CoderNever

    Thank You for This sig, Peter/Vengeance.

    Uploaded with ImageShack.us
    Respect Aint Easy to earn, helpful people are always loyal.
    Goals
    Get 50 post []
    get 100 post []
    get 150 post []
    get 200 post []
    Make a Auto-On Hack []
    Release My first hack []
    Make a hotKey hack []
    Make a menu-hack []
    Hack, not get called a hacker []
    Hack, get QQed at and lol []
    Be known on MPGH [] -Unknown.
    Yes i have a long goal list, but a long goal list is someone who wants to accomplish alot of things..

  15. #269
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by QQiswhyihack View Post
    Wow man looks sweeet.. i wanna change the menu loook having trouble, PM me your msn, and gimme a hand, if not i'll keep trying
    I love this base though, helped me SO much!
    Thanks Whit;
    ;D
    Just change colors and fonts..? Not too hard to do.

  16. #270
    DreadKyller's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    122
    Reputation
    12
    Thanks
    21
    Even if I just take the files you supply, and not even change them at all, I get like 800 errors, includeing improper syntaxes, missing symbols, can't convert 'char' to 'LPCWSTR'

    1):
    Code:
     'ID3DXFont::DrawTextW' : cannot convert parameter 2 from 'char [1024]' to 'LPCWSTR'
    1>        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
    2):
    Code:
    syntax error : 'char' should be preceded by ';'(And it is)
    These are the main errors I get, can anyone tell me what is wrong?

Page 18 of 21 FirstFirst ... 81617181920 ... LastLast

Similar Threads

  1. help Hans & Gellins Base Combined
    By yoyoman4567 in forum Combat Arms Coding Help & Discussion
    Replies: 9
    Last Post: 02-21-2011, 01:34 PM
  2. Erro Hans & gellins base combined
    By dllbase in forum Combat Arms Brazil Discussions
    Replies: 5
    Last Post: 01-21-2011, 10:10 AM
  3. How to add hacks in Hans & Gellins Base Combined
    By AlessandroPL in forum Combat Arms Coding Help & Discussion
    Replies: 5
    Last Post: 01-13-2011, 03:56 PM
  4. Hans & Gellins Base Combined
    By AlessandroPL in forum Combat Arms Coding Help & Discussion
    Replies: 10
    Last Post: 01-13-2011, 02:32 PM
  5. Gellins + Hans Base Combined By whit -Menu Not Appearing-
    By austen407 in forum Combat Arms Coding Help & Discussion
    Replies: 4
    Last Post: 10-21-2010, 06:32 PM