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 


how to make trainer maker

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
jeremydd
Master Cheater
Reputation: 0

Joined: 16 Jul 2007
Posts: 498

PostPosted: Fri Aug 17, 2007 6:59 am    Post subject: how to make trainer maker Reply with quote

please i need help how to make trainer maker with a save function
Like thomisback Trainer maker please Razz im REP If someone help 2x Rep If i can Razz

_________________
all people on cheat engine dosent have respect on me So i will never post or visit this forum again this people are no respect T_T
-jeremydd
Back to top
View user's profile Send private message
Kevin
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Mar 2007
Posts: 1139
Location: Spiderman-World

PostPosted: Fri Aug 17, 2007 7:10 am    Post subject: Reply with quote

[Delphi]

You have to use the Shockwaveflash component (you have to import it, Components -> Import ActiveX Component -> Shockwaveflash (version 1.0)

Shockwaveflash1.SetVariable('Lives', '9999'); //You can use edit boxes instead of setting the variable directly. e.g Shockwaveflash1.SetVariable(edit1.text, edit2.text);

Shockwaveflash1.LoadMovie(0, 'http://www.swflink.com/swf'); //You can also use an edit box here, so it will load whatever you type into the edit box.

Shockwaveflash1.GetVariable( ); //Isn't NEEDED, but some people do use it. I don't because i don't see why i need it, the SetVariable is good for me.
Back to top
View user's profile Send private message MSN Messenger
jeremydd
Master Cheater
Reputation: 0

Joined: 16 Jul 2007
Posts: 498

PostPosted: Fri Aug 17, 2007 7:46 am    Post subject: Reply with quote

oh noo not delphi vb6
yea i already know that
i just asking how to save config i mean how to save Config file and load it like thomis back trainermaker if you know it

_________________
all people on cheat engine dosent have respect on me So i will never post or visit this forum again this people are no respect T_T
-jeremydd
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Fri Aug 17, 2007 7:48 am    Post subject: Reply with quote

jeremydd wrote:
oh noo not delphi vb6
yea i already know that
i just asking how to save config i mean how to save Config file and load it like thomis back trainermaker if you know it


Save the settings in a .ini file or in the registry.

_________________
Back to top
View user's profile Send private message
jeremydd
Master Cheater
Reputation: 0

Joined: 16 Jul 2007
Posts: 498

PostPosted: Fri Aug 17, 2007 7:52 am    Post subject: Reply with quote

Lol i dont know how to save
(And How do thomisback create a 2 .exe and an .setings )

_________________
all people on cheat engine dosent have respect on me So i will never post or visit this forum again this people are no respect T_T
-jeremydd


Last edited by jeremydd on Fri Aug 17, 2007 7:56 am; edited 1 time in total
Back to top
View user's profile Send private message
UnLmtD
Grandmaster Cheater
Reputation: 0

Joined: 13 Mar 2007
Posts: 894
Location: Canada

PostPosted: Fri Aug 17, 2007 7:55 am    Post subject: Reply with quote

If you choose the .ini, WritePrivateProfileString/GetPrivateProfileString/GetPrivateProfileString actually there's more then that, just look in MSDN

For the registry, RegCreateKeyEx/RegOpenKeyEx/RegSetValueEx/ RegQueryValueEx

_________________
Back to top
View user's profile Send private message
jeremydd
Master Cheater
Reputation: 0

Joined: 16 Jul 2007
Posts: 498

PostPosted: Fri Aug 17, 2007 8:03 am    Post subject: Reply with quote

can you explain is this for vb
Hey UnLmTd Can you teach me how Thomisback Creat His trainermaker Razz
I love it (example There is an trainermaker and an Your trainer here and How can i Edit the Your trainer here with an Trainermaker

_________________
all people on cheat engine dosent have respect on me So i will never post or visit this forum again this people are no respect T_T
-jeremydd
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Fri Aug 17, 2007 10:43 am    Post subject: Reply with quote

why dont you google the functions that the guy above told you

we give you functions
you should learn to use them

_________________
Back to top
View user's profile Send private message
Zombi3
Expert Cheater
Reputation: 0

Joined: 02 Aug 2007
Posts: 144

PostPosted: Fri Aug 17, 2007 11:23 am    Post subject: Reply with quote

from http://hl.cuntsaver.com
Quote:
#include <windows.h>
#include <iostream>

using namespace std;

int main()
{
system("Title = Trainer Template");
LONG address = 0x40B57DC;
byte newvalue = 0x90;
HWND hwnd;
HANDLE phandle;
DWORD pid;
hwnd = FindWindow(NULL, "Game");
GetWindowThreadProcessId(hwnd, &pid);
phandle = OpenProcess(PROCESS_ALL_ACCESS, 0, pid);
if (phandle != 0)
{
cout << "Hit Enter to Apply the Hack" << endl;
cin.get();
WriteProcessMemory(phandle, (LPVOID)address, (LPVOID) &newvalue, 1, 0);
cout << "Hack was a success!" << endl;
cin.get();
}
else {

cout << "A error occured!\nMake sure the Game is open.";
cin.get();
}
}


So there you have it, a working c++ trainer.
This can help you build a vc++ trainer too, just a few minor changes are needed.
Thankyou,
=crypt=

_________________
Tutorial On Api hooking

unsigned char sh4llcode[] ="\xx0r\xsucks"
Back to top
View user's profile Send private message
HomerSexual
Grandmaster Cheater Supreme
Reputation: 5

Joined: 03 Feb 2007
Posts: 1657

PostPosted: Fri Aug 17, 2007 11:31 am    Post subject: Reply with quote

jeremy wouldn't understand/know how to apply that to save his life

he wants you to do it for him, in vb.

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

Joined: 22 Aug 2007
Posts: 13

PostPosted: Wed Aug 22, 2007 1:56 pm    Post subject: Reply with quote

can one of you give me a link to download visual basic 6
_________________
The meaning of life is............................
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    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