Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[Request] How to make a trainer tutorial ? [Request]

 
Post new topic   This topic is locked: you cannot edit posts or make replies.    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
Mr.DeltaX
Newbie cheater
Reputation: 0

Joined: 06 Oct 2007
Posts: 19

PostPosted: Mon Oct 08, 2007 12:43 pm    Post subject: [Request] How to make a trainer tutorial ? [Request] Reply with quote

First of all Hi Very Happy

I'm new to programming and i'm now learning C++.

Can you make trainers with C++ ?

And if you can't or it is easier with another programm please give a link to the topic.

I was suprised when I searched the form and found out that there are no GOOD and large tutorials on how to make a trainer.

So I was wondering could some of you guys write a good tutorial on how to make trainers ?

So that me and other people could learn how to make trainers. Very Happy

( Please don't give me a link to trainerkit or something because I wan't to programm and not just click some stuff )


Thanks alot Very Happy
Back to top
View user's profile Send private message
appalsap
Moderator
Reputation: 0

Joined: 27 Apr 2006
Posts: 6753
Location: Pakistan

PostPosted: Mon Oct 08, 2007 12:50 pm    Post subject: Reply with quote

Ah but trainerkit is for the "tutorial"ones with learning disabilities inclined Wink

Help yourself.

_________________
Back to top
View user's profile Send private message
Mr.DeltaX
Newbie cheater
Reputation: 0

Joined: 06 Oct 2007
Posts: 19

PostPosted: Mon Oct 08, 2007 12:58 pm    Post subject: Reply with quote

I know the basics of disassembler and debugger but not how to make a trainer with them Laughing
Back to top
View user's profile Send private message
Acim
Grandmaster Cheater Supreme
Reputation: 0

Joined: 04 Jun 2007
Posts: 1948
Location: If anyone has a GMS DK and they don't need it I'll have it!!

PostPosted: Mon Oct 08, 2007 1:02 pm    Post subject: Reply with quote

Easiest Way to Make a Trainer: Cheat Engine
Easiest Way To Use Cheat Engine: Follow the link in my sig.

_________________
I'm alive and well, but I quit CEF for a while. Legitly playing since Novemberish 07. Starting hacking October 06.
Back to top
View user's profile Send private message
Mr.DeltaX
Newbie cheater
Reputation: 0

Joined: 06 Oct 2007
Posts: 19

PostPosted: Mon Oct 08, 2007 1:14 pm    Post subject: Reply with quote

I know I can make trainers in CheateEngine but I wan't to try to make my own trainers something like



viewtopic.php?t=139959


Omg I can't post urls xD


just go to that topic in your browser
Back to top
View user's profile Send private message
appalsap
Moderator
Reputation: 0

Joined: 27 Apr 2006
Posts: 6753
Location: Pakistan

PostPosted: Mon Oct 08, 2007 2:23 pm    Post subject: Reply with quote

VISUAL BASIC Mad that's worse than trainer kit!
Back to top
View user's profile Send private message
MegaForum
Grandmaster Cheater
Reputation: 0

Joined: 20 Aug 2007
Posts: 558

PostPosted: Mon Oct 08, 2007 2:27 pm    Post subject: Reply with quote

appalsap wrote:
VISUAL BASIC Mad that's worse than trainer kit!


Vb is like a child's version of a building Rolling Eyes . lacks many things of a proffesional building, or in this case a program. very simple for beginners but lacks the basics and shouldn't be considered a language because there is virtually no coding except simple command lines. I would use Vb as a last resort. Just my opinion.
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Mon Oct 08, 2007 2:34 pm    Post subject: Reply with quote

VB has the ability to do as much as other languages due, with the limitations of storage types. Yes, it's not as powerful as other languages, BUT it was never intended to be anyway.

VB was made for RAD programming for database access, but has proven to show its worth for other things. As much as you all bash it and hate it, it has the ability to do just as much as other languages if you put your thought into it and think outside the box.

I would suggest using it for a learning language, but not depend on it for full blown applications, but it can hold its own on certain project criteria.

If you plan to learn a language to be used permanently, I suggest C++.
Back to top
View user's profile Send private message Visit poster's website
Mr.DeltaX
Newbie cheater
Reputation: 0

Joined: 06 Oct 2007
Posts: 19

PostPosted: Tue Oct 09, 2007 5:40 am    Post subject: Reply with quote

So you guys are saying that I must learn c++.

But my other question.
Can you make a trainer with c++ ?
I'm almost sure it can but are there good tuts around to teach me ?
Back to top
View user's profile Send private message
redhead
Cheater
Reputation: 0

Joined: 21 Mar 2007
Posts: 47

PostPosted: Tue Oct 09, 2007 5:59 am    Post subject: Reply with quote

Of couse you an make trainer with C++..
Noz3001 posted a link to a very good tut some time ago..But Link is already dead.
Maybe this Code can help.
Code:
#include "windows.h"

int main()
{
        unsigned long PID;
        DWORD Buffer = { 9999999 };  //Value (the Value you want to get inGame)
        HWND hWindow = FindWindow(NULL, "yourProgrammsWindowName");
    if (!hWindow){
       MessageBox(0, "Cannot find the window!", 0, MB_ICONERROR); return 1; }

        CreateRemoteThread(hWindow, NULL, 0, 0, 0, NULL, NULL);
        GetWindowThreadProcessId(hWindow, &PID);

        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, TRUE, PID);

       WriteProcessMemory(hProcess, (LPVOID)0x0000000, &Buffer, sizeof(Buffer), 0); // 0x00000000 --> Addres you found with CE
        CloseHandle(hProcess);
        return 0;
}

Anyaway, I would suggest to learn C++ before trying to make trainers with it Rolling Eyes
Back to top
View user's profile Send private message
Mr.DeltaX
Newbie cheater
Reputation: 0

Joined: 06 Oct 2007
Posts: 19

PostPosted: Tue Oct 09, 2007 6:20 am    Post subject: Reply with quote

You're right I am now doing a tut of cplusplus.com So I think that I must first learn the basics Smile
Back to top
View user's profile Send private message
atom0s
Moderator
Reputation: 205

Joined: 25 Jan 2006
Posts: 8587
Location: 127.0.0.1

PostPosted: Tue Oct 09, 2007 6:23 am    Post subject: Reply with quote

Mr.DeltaX wrote:
So you guys are saying that I must learn c++.

But my other question.
Can you make a trainer with c++ ?
I'm almost sure it can but are there good tuts around to teach me ?


No one is saying you MUST do anything. It's your choice on what to learn. C++ is just the most widely used language for anything anymore. Along side with ASM and C# in main stream professions. C++ is suggested because it has little to no limitations when used properly.

Just don't rush yourself into the language to learn how to make trainers, you won't learn anything doing that. Don't copy+paste code. Analyze things, look them up on the net, study, and read.

For a tutorial on the basics of C++
http://www.cplusplus.com/doc/tutorial/

API Reference:
http://msdn2.microsoft.com/en-us/default.aspx
Back to top
View user's profile Send private message Visit poster's website
benlue
Moderator
Reputation: 0

Joined: 09 Oct 2006
Posts: 2142

PostPosted: Tue Oct 09, 2007 7:13 am    Post subject: Reply with quote

Search on google or here. That would be more useful.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites