Results 1 to 11 of 11
  1. #1
    yogilek's Avatar
    Join Date
    Feb 2007
    Location
    Hell
    Posts
    315
    Reputation
    12
    Thanks
    23

    Visual C++ Video Tutorial

    Can SomeOne Make for me a Video Visual C++ warrock trainer... ? please... and add in youtube

  2. #2
    TheRedEye's Avatar
    Join Date
    Apr 2007
    Location
    In a good place
    Posts
    300
    Reputation
    18
    Thanks
    24
    Quote Originally Posted by yogilek View Post
    Can SomeOne Make for me a Video Visual C++ warrock trainer... ? please... and add in youtube
    ANYTHING ELSE?
    LOL

  3. #3
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    Isnt it fun when your trying to learn c++, and when you learn something with one compiler you realize that everything you need is made with other compiler : F

  4. #4
    yogilek's Avatar
    Join Date
    Feb 2007
    Location
    Hell
    Posts
    315
    Reputation
    12
    Thanks
    23
    ok or module ( detected ) for vb 2005 or 2008 ^.-- ?

  5. #5
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    I dont understand a shit about anything pointing to module, but it is like this?

    Code:
    void ReadInt(long addy, int &buffer)
    {
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadFloat(long addy, float &buffer)
    {
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadPointerInt(long addy, short offset,int &buffer)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadPointerFloat(long addy, short offset, float &buffer)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
    }
    
    void WriteInt(long addy, int value)
    {
    	memory();
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
    }
    
    void WriteFloat(long addy, float value)
    {
    	memory();
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
    }
    
    void WritePointerInt(long addy, short offset,int value)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
    }
    
    void WritePointerFloat(long addy, short offset,float value)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
    }
    and its made some yoni dont cry girls

  6. #6
    yogilek's Avatar
    Join Date
    Feb 2007
    Location
    Hell
    Posts
    315
    Reputation
    12
    Thanks
    23
    Quote Originally Posted by juppeli View Post
    I dont understand a shit about anything pointing to module, but it is like this?

    Code:
    void ReadInt(long addy, int &buffer)
    {
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadFloat(long addy, float &buffer)
    {
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadPointerInt(long addy, short offset,int &buffer)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
    }
    
    void ReadPointerFloat(long addy, short offset, float &buffer)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &buffer, sizeof(buffer),NULL);
    }
    
    void WriteInt(long addy, int value)
    {
    	memory();
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
    }
    
    void WriteFloat(long addy, float value)
    {
    	memory();
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &value, sizeof(value),NULL);
    }
    
    void WritePointerInt(long addy, short offset,int value)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
    }
    
    void WritePointerFloat(long addy, short offset,float value)
    {
    	long faddy=NULL;
    	long raddy=NULL;
    	memory();
    	ReadProcessMemory(hProcess,(LPVOID*)(DWORD)addy, &faddy, sizeof(faddy),NULL);
    	raddy = faddy + offset;
    	WriteProcessMemory(hProcess,(LPVOID*)(DWORD)raddy, &value, sizeof(value),NULL);
    }
    and its made some yoni dont cry girls
    edit: c++ ;s

  7. #7
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    Quote Originally Posted by yogilek View Post
    its for what??
    Its for -05 or what do you mean???+++++++

    e: aight lol nvm

  8. #8
    yogilek's Avatar
    Join Date
    Feb 2007
    Location
    Hell
    Posts
    315
    Reputation
    12
    Thanks
    23
    do u have for vb 2005 or 2008 ?

  9. #9
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    oh god you said vb, i tought you mean c++ :F i should really go to bed
    Im not sure should i do anything but try this
    https://www.vbforums.com/showthread.php?t=416020

  10. #10
    yogilek's Avatar
    Join Date
    Feb 2007
    Location
    Hell
    Posts
    315
    Reputation
    12
    Thanks
    23
    but its not module...

  11. #11
    juppeli's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    768
    Reputation
    12
    Thanks
    19
    I didnt actually try it but didnt it said that its some kind of trainer? So there should be module?

Similar Threads

  1. Video Tutorial (GP and vista help)
    By gudsoldier in forum Combat Arms Hacks & Cheats
    Replies: 49
    Last Post: 07-06-2009, 10:20 PM
  2. Video tutorial: Making WarRock hack in Visual Basic
    By Darky in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-12-2009, 02:47 PM
  3. gudsoldier can you make a video tutorial
    By azngamerboi9 in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 08-04-2008, 12:56 PM
  4. [Video Tutorial] How to make an undetected module.
    By wr194t in forum Visual Basic Programming
    Replies: 24
    Last Post: 11-04-2007, 05:48 AM
  5. [Video tutorial] Make your own css cheats
    By seren1ty in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 6
    Last Post: 09-15-2007, 04:11 PM