Page 1 of 3 123 LastLast
Results 1 to 15 of 32
  1. #1
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    I've been working so long coding to get my D3D Menu to work but it just wont!

    When I inject the DLL the Message Box shows, but in the game it D/Cs while loading. I updated all my addys but it still won't work.

    Heres my LTC + D3D:

    Code:
    #define LTClient_Adress 0x377EFBD8
    #define D3DDevice 0x9098F8
    I got Zoom (Hejsan) to look at it, he gave me some good advice and help, but I don't know why it keeps D/Cing.

    And starting from yesterday, I've been getting this:

    Code:
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    If you want to help TV me:
    528 812 228
    /v!h>y<AG9
    or
    123456

    /

    Never mind the
    Code:
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(32) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    1>.\Base.cpp(33) : warning C4244: 'initializing' : conversion from 'float' to 'LONG', possible loss of data
    I fixed it by removing the CrossHair code Zoom (Hejsan) gave me. Zoom, hope you can help me fix it sometime.
    Last edited by Lonly; 07-15-2010 at 03:11 AM.

  2. #2
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    The crosshair in ac1d functions is bad and will cause that error. Find another one.
    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

  3. #3
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by whatup777 View Post
    The crosshair in ac1d functions is bad and will cause that error. Find another one.
    Can I get some help for the D/C?

  4. #4
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    If this is Gellins Base you need to update the Detour.
    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

  5. #5
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by whatup777 View Post
    If this is Gellins Base you need to update the Detour.
    It is. All right can I get the new Detour?

  6. #6
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    In CDetour.h change it to this.
    Code:
    #define DetourRandTypeLow		DETOUR_TYPE_PUSH_RET//Oringinal Type _OBS_ADD
    #define DetourRandTypeHigh		DETOUR_TYPE_PUSH_RET//Original Type _OBS_ADDNOT
    And in DirectX.cpp go to the Bottom where it says hook and change it to JMP like this:
    Code:
    void cDirectx::Hook(void)
    {
    	Base.bSet.m_dwReset	   = Base.GetPointer(16);
    	Base.bSet.m_dwPresent  = Base.GetPointer(17);
    
        pReset   = (oReset)cReset.Create    (( BYTE* )Base.bSet.m_dwReset,   ( BYTE* )gellReset,   DETOUR_TYPE_NOP_JMP );	
        pPresent = (oPresent)cPresent.Create(( BYTE* )Base.bSet.m_dwPresent, ( BYTE* )gellPresent, DETOUR_TYPE_NOP_JMP );
    Thank and rep me!

    In CDetour.h change it to this.
    Code:
    #define DetourRandTypeLow		DETOUR_TYPE_PUSH_RET//Oringinal Type _OBS_ADD
    #define DetourRandTypeHigh		DETOUR_TYPE_PUSH_RET//Original Type _OBS_ADDNOT
    And in DirectX.cpp go to the Bottom where it says hook and change it to JMP like this:
    Code:
    void cDirectx::Hook(void)
    {
    	Base.bSet.m_dwReset	   = Base.GetPointer(16);
    	Base.bSet.m_dwPresent  = Base.GetPointer(17);
    
        pReset   = (oReset)cReset.Create    (( BYTE* )Base.bSet.m_dwReset,   ( BYTE* )gellReset,   DETOUR_TYPE_NOP_JMP );	
        pPresent = (oPresent)cPresent.Create(( BYTE* )Base.bSet.m_dwPresent, ( BYTE* )gellPresent, DETOUR_TYPE_NOP_JMP );
    Thank and rep me!
    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

  7. The Following 3 Users Say Thank You to whatup777 For This Useful Post:

    juggernault5 (07-15-2010),Lonly (07-15-2010),qwerty01 (07-18-2010)

  8. #7
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    For some reason there isn't a Thank button... I'll give you credits though.

    NVM, Found it, I'll give you credits as well.

  9. #8
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Ok.

    Short
    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

  10. #9
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Hmm, no D/C but no Menu... /

    Teamviewer?

  11. #10
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    im going to try this
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  12. #11
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    have u got the new ltc

  13. #12
    zmansquared's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Location
    Kickin it at Microsoft
    Posts
    2,086
    Reputation
    36
    Thanks
    221
    My Mood
    Cheerful
    that DOES NOT WORK. still dc's
    Need Help With Coding or Something??? MSN me
    zmansquared@hotmail.com


    I am the one and only Microsoft Fag!!!

    Quote:
    Originally Posted by Arhk
    All games should be hacked, if we don't do it someone else will. Hackers force the progress, of better programming methods.
    ~


    Take this Pic everyone!



    next-

  14. #13
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by wassup40 View Post
    have u got the new ltc
    I don't know. Do you know?

    Quote Originally Posted by zmansquared View Post
    that DOES NOT WORK. still dc's
    Doesn't DC for me, just the menu doesn't show.

    No replies, its been almost two hours.

    Almost 3 Hours...
    Last edited by Lonly; 07-15-2010 at 05:24 AM.

  15. #14
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Check over your code again and try it in Seal's test environment
    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

  16. #15
    Threadstarter
    Unverified User
    Lonly's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Quote Originally Posted by whatup777 View Post
    Check over your code again and try it in Seal's test environment
    I checked over my codes, and what is Seal's Test Environment?/

Page 1 of 3 123 LastLast

Similar Threads

  1. [Help]D3D Menu Development
    By why06 in forum DirectX/D3D Development
    Replies: 7
    Last Post: 01-21-2011, 06:54 PM
  2. Need some help. Hack/Injector won't work.
    By Vexatiion in forum Combat Arms Help
    Replies: 6
    Last Post: 10-01-2010, 11:09 PM
  3. [HELP] List box won't work?
    By jajarem64 in forum Visual Basic Programming
    Replies: 8
    Last Post: 07-24-2010, 04:23 PM
  4. [Request] D3D Hacks won't work...
    By Hacker8) in forum WarRock Discussions
    Replies: 9
    Last Post: 04-04-2010, 08:00 AM
  5. [Help]D3D Menu
    By cothen12 in forum C++/C Programming
    Replies: 13
    Last Post: 01-18-2008, 04:28 PM