Page 5 of 6 FirstFirst ... 3456 LastLast
Results 61 to 75 of 77
  1. #61
    dajaj's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    There is a client side of the game when you can try whatever u like,
    Soo... why are cheats to BattleField 3 ?? The same methods, it will be sufficient a bit to wait

  2. #62
    asserio16's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    93
    Reputation
    10
    Thanks
    95
    My Mood
    Yeehaw
    i know a little of c++ but i cant do for now a hack whit that source code i dont know what to do

  3. #63
    solo10's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Port akaba
    Posts
    19
    Reputation
    10
    Thanks
    0
    y dont know how use c++ dont know that code. just create the vid how to use or sshow tips ?

  4. #64
    Zekida's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Location
    Im a Chad
    Posts
    797
    Reputation
    24
    Thanks
    258
    My Mood
    Psychedelic
    Quote Originally Posted by flameswor10 View Post
    Hey, I've decided I really can not be bothered to keep up with WOT, and it's fucked up way of updating. (have to reinstall each fucking time).

    So i've decided to give you users, a simple headstart in hacking this game.

    Chams (Tank):
    Code:
    if(bHack[CHAMS] && Stride == 36) //Tank Chams
    Chams (Flag):
    Code:
    if(bHack[FCHAMS] && Stride == 12) //Flag Chams
    DIP Hook:
    Code:
    DIP_HOOK = VTable[82] + 0x2D;
    DIP_RET   = DIP_HOOK + 0x07;
    Endscene Hook:
    Code:
    ENDSCENE_HOOK = VTable[42] + 0x2A;
    ENDSCENE_RET = ENDSCENE_RET + 0x6;
    If you use Stride 8, you get wallhack!!! (I think )
    You do NOT need a Midfunction hook for hooking Reset!!
    (I think the same applies to DIP but I did DIP just incase).

    If you need detours (which you WILL not need but for you noobs)
    Code:
    #define SIZEOF_JMP_REL 5
    DWORD Detours::DetourCreateE9( DWORD  SrcVA, DWORD  DstVA, DWORD  Size )
    {
    	DWORD DetourVA, dwProtect, i;
    	if ( SrcVA && DstVA && Size >= SIZEOF_JMP_REL )
    	{
    		DetourVA = (DWORD) VirtualAlloc( NULL, Size + SIZEOF_JMP_REL, MEM_COMMIT, PAGE_EXECUTE_READWRITE );
    
    		if ( DetourVA && VirtualProtect( (VOID*)SrcVA, Size, PAGE_EXECUTE_READWRITE, &dwProtect ) )
    		{
    			for ( i=0; i < Size; i++ ) {
    				*(BYTE*)( DetourVA + i ) = *(BYTE*)( SrcVA + i );
    			}
    			
    			*(BYTE*)( DetourVA + Size + 0 ) = 0xE9;
    			*(DWORD*)( DetourVA + Size + 1 ) = ( SrcVA - DetourVA - SIZEOF_JMP_REL );
    			*(BYTE*)( SrcVA + 0 ) = 0xE9;
    			*(DWORD*)( SrcVA + 1 ) = ( DstVA - SrcVA - SIZEOF_JMP_REL );
    			VirtualProtect( (VOID*)SrcVA, Size, dwProtect, &dwProtect );
    			VirtualProtect( (VOID*)DetourVA, Size + SIZEOF_JMP_REL, PAGE_EXECUTE_READ, &dwProtect );
    			return DetourVA;
    		}
    	}
    	return (0);
    }
    Remember, if you want to use these codes, please credit + rep + thank me!!.
    Can u plzz make a hack of this? I really dont get that C++. It would be a lot more helpfull if u could just make an hack so that we just download it and start it. Because there r many more people like me that dont know how to use the C++.
    Last edited by Zekida; 01-04-2014 at 12:34 PM.

  5. #65
    narrwass's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Nexon Employee. <<< i hate nexon so no Thanks for you.

  6. #66
    Funktasticmo's Avatar
    Join Date
    Nov 2008
    Gender
    female
    Location
    Indiana, USA
    Posts
    207
    Reputation
    22
    Thanks
    59
    My Mood
    Angelic
    I'm honestly surprised no one has done anything with this information yet... I would but honestly I forgot how to do that shit XD


    CA - Paratisii (legit char)
    CA-Hacked - Yeah... i'm not tellin you my hacked chars name what you think I am? Stupid?

    V - ZrakiKnpachi (legit char)
    V-Hacked - Yeah... i'm not tellin you my hacked chars name what you think I am? Stupid?

    MC - TitusPullo (legit account)

  7. #67
    dirtydubious's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1

    I'm working on it but could use some clarification

    Quote Originally Posted by Funktasticmo View Post
    I'm honestly surprised no one has done anything with this information yet... I would but honestly I forgot how to do that shit XD
    I need to know exactly what those ref codes are for. i see some lingo but i'm not sure what it means.

    Please clarify what exactly these codes do or what they represent. anyone?

    I want to make a bot with c++ and i mean a real bot that is impossible to detect because everything is in variables so nothing is done the same way twice. Ganna take some serious time but i'd rather do this than grind lol.

    Quote Originally Posted by flameswor10 View Post

    I don't think i can use this>

    Chams (Tank):
    Code:
    if(bHack[CHAMS] && Stride == 36) //Tank Chams
    <<<or this > because it is probably detectable>>>>

    Chams (Flag):
    Code:
    if(bHack[FCHAMS] && Stride == 12) //Flag Chams
    <<<but what is this>>>

    DIP Hook:
    Code:
    DIP_HOOK = VTable[82] + 0x2D;
    DIP_RET   = DIP_HOOK + 0x07;
    <<<this>?>>

    Endscene Hook:
    Code:
    ENDSCENE_HOOK = VTable[42] + 0x2A;
    ENDSCENE_RET = ENDSCENE_RET + 0x6;
    <<<and this>?>>

    If you use Stride 8, you get wallhack!!! (I think )
    You do NOT need a Midfunction hook for hooking Reset!!
    (I think the same applies to DIP but I did DIP just incase).

    If you need detours (which you WILL not need but for you noobs)
    Code:
    #define SIZEOF_JMP_REL 5
    DWORD Detours::DetourCreateE9( DWORD  SrcVA, DWORD  DstVA, DWORD  Size )
    {
    	DWORD DetourVA, dwProtect, i;
    	if ( SrcVA && DstVA && Size >= SIZEOF_JMP_REL )
    	{
    		DetourVA = (DWORD) VirtualAlloc( NULL, Size + SIZEOF_JMP_REL, MEM_COMMIT, PAGE_EXECUTE_READWRITE );
    
    		if ( DetourVA && VirtualProtect( (VOID*)SrcVA, Size, PAGE_EXECUTE_READWRITE, &dwProtect ) )
    		{
    			for ( i=0; i < Size; i++ ) {
    				*(BYTE*)( DetourVA + i ) = *(BYTE*)( SrcVA + i );
    			}
    			
    			*(BYTE*)( DetourVA + Size + 0 ) = 0xE9;
    			*(DWORD*)( DetourVA + Size + 1 ) = ( SrcVA - DetourVA - SIZEOF_JMP_REL );
    			*(BYTE*)( SrcVA + 0 ) = 0xE9;
    			*(DWORD*)( SrcVA + 1 ) = ( DstVA - SrcVA - SIZEOF_JMP_REL );
    			VirtualProtect( (VOID*)SrcVA, Size, dwProtect, &dwProtect );
    			VirtualProtect( (VOID*)DetourVA, Size + SIZEOF_JMP_REL, PAGE_EXECUTE_READ, &dwProtect );
    			return DetourVA;
    		}
    	}
    	return (0);
    }
    Remember, if you want to use these codes, please credit + rep + thank me!!.
    I really wish i could get a hold of the tank leader source code cause then it wouldn't be so mind boggling and i'd have a definite place to start from which i could fiddle. I guess I'll just start with building a bot that logs into the game and go from there lol.
    Last edited by dirtydubious; 03-23-2014 at 08:08 PM.

  8. #68
    Malcontent's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    If you guys need SOMEWHERE to start, this might help: mpgh.net/forum/showthread.php?t=503253

    If it helps, great. If it doesn't, sorry.

  9. #69
    rawrtwo02's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Hot
    WHAT PROGRAM DID I NEED TO USE FOR THIS PROGRAM?

  10. #70
    Skepta's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    The internet
    Posts
    531
    Reputation
    24
    Thanks
    149
    My Mood
    Innocent
    If only I could 'do' C++ :/
    "Ever since mum said, "Son you are a king, I feel like Floyd when I'm stepping into the ring."


  11. #71
    cytre15's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    sir can you please make some wallhack or if possible some exp hack. . Im hoping you could do it. Thanks sir

  12. #72
    Blak32's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Fine
    I`m new here but this looks interesting,I don`t actually know C++,just some HTML and can you explain a bit where to add this or ?

  13. #73
    williamcll's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    I'm not even sure a hack that was made last year will still work anymore.

  14. #74
    w1z4rdd's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    9
    My Mood
    Drunk
    To all you wondering how to use this: learn how to mod WoT with Python first, then go nuts with this, since Python is usually a bit easier to learn than C++, but learning any programming language, like any real language, takes time and dedication.

  15. #75
    budjar's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    thank you , and what do i need to get them to work ? i need to down load c++ program iv never did this b4 lol
    Last edited by budjar; 08-13-2014 at 10:31 AM.

Page 5 of 6 FirstFirst ... 3456 LastLast

Similar Threads

  1. WOT:World Of Tanks hack
    By lallop in forum Hack Requests
    Replies: 9
    Last Post: 03-03-2015, 03:35 AM
  2. WOT,world of tanks "rank hack"
    By lallop in forum General Game Hacking
    Replies: 2
    Last Post: 01-11-2011, 06:36 AM
  3. I trade a Undetected V.I.P hack for a Warrock acc lvl 13+
    By M.A.S in forum WarRock - International Hacks
    Replies: 9
    Last Post: 05-17-2007, 01:07 PM
  4. World of warcraft hacks
    By shakib in forum Hack Requests
    Replies: 23
    Last Post: 09-12-2006, 10:35 AM
  5. Warrock Emblem Tank Hack
    By Zededarian in forum Game Hacking Tutorials
    Replies: 0
    Last Post: 01-01-2006, 09:26 PM