Page 3 of 6 FirstFirst 12345 ... LastLast
Results 31 to 45 of 77
  1. #31
    ez7pac's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    8
    Why the author did not make a working hack for the new version of the game? Old version 1.0 does not work.

    If the author does not have time, maybe someone else will do it?

  2. #32
    nasa32's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    39
    My Mood
    Inspired
    please make it work

  3. #33
    takems23's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Tired
    I want to know , what does this codes ? I mean what exactly are doing ?

  4. #34
    GoodCharles's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Sagaponack, NY
    Posts
    56
    Reputation
    10
    Thanks
    25
    My Mood
    Happy
    Some people who know how to use a coding language called C++ wanted to have some fun reading comments about how people struggle when trying to understand what these codes do.

    Pathetic if you ask me..

  5. The Following 2 Users Say Thank You to GoodCharles For This Useful Post:

    Cosstaify (01-08-2014),TravMasterB (01-24-2014)

  6. #35
    Maxmanus96's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    how to use codes? plz help

  7. #36
    Adriannad's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    how i put codes help plz

  8. #37
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Quote Originally Posted by GoodCharles View Post
    Some people who know how to use a coding language called C++ wanted to have some fun reading comments about how people struggle when trying to understand what these codes do.

    Pathetic if you ask me..
    So you're telling me that I released it just so I can laugh at non-programmers try to use it?
    What's the point in that. I released it for the people who know how to use it to make new hacks in place of me
    No I do not make game hacks anymore, please stop asking.

  9. #38
    zelok's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    My Mood
    Bitchy
    im new with this but is there a tutorial for what hook is and stuff and how to use this ?

  10. #39
    timnohome's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    so is there a esp hack that is available in a vip subscription for wot even if u have to fix it up on my comp is fine but i wont buy vip unless i can get a wot hack esp is all i need for it anyway if can help with this please reply will go vip if can be done thanks great community here by the way thanks for having me

    ---------- Post added at 06:51 PM ---------- Previous post was at 06:49 PM ----------

    Quote Originally Posted by flameswor10 View Post
    So you're telling me that I released it just so I can laugh at non-programmers try to use it?
    What's the point in that. I released it for the people who know how to use it to make new hacks in place of me
    that is what i got from reading ur post was for others to take what u had i believe it says that just saying

    ---------- Post added at 06:54 PM ---------- Previous post was at 06:51 PM ----------

    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!!.
    yeah see here it is

  11. #40
    trungproman1's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    Please give us the full thing you do and let us download it that it.

  12. #41
    daniel_mario_22's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    plz send hack for messenger ID : daniel_mario20@yahoo.com

  13. #42
    daniel_mario_22's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    where codes put these to work hack. plz contact for messenger id daniel_mario20

    ---------- Post added at 12:52 PM ---------- Previous post was at 12:49 PM ----------

    injecting Flameswor10 WOT Pub.zip and me off game

  14. #43
    its Frame's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    can you help me bye make a youtube videos on world of tanks hack please

  15. #44
    haromass's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    128
    Reputation
    10
    Thanks
    2,253
    Can someone C++ this thing and post it ? Ive already tried to C++ it and messed up in all kinds of ways.

  16. #45
    deadlove01's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    vietnam
    Posts
    1
    Reputation
    10
    Thanks
    0

    Thanks [MPGH]flameswor10. I have some problems with wallhack. When I turn on wallhack, all of tanks become invisible. It didn't have any textures on tanks model. That's when I set D3DRS_ZENABLE = false. Can you share me or give me some advices ? Thanks a lot :X
    Attached Thumbnails Attached Thumbnails
    shot_002.jpg  


Page 3 of 6 FirstFirst 12345 ... 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