View previous topic :: View next topic |
Author |
Message |
jeremydd Master Cheater
Reputation: 0
Joined: 16 Jul 2007 Posts: 498
|
|
Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Fri Aug 17, 2007 7:10 am Post subject: |
|
|
[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 |
|
 |
jeremydd Master Cheater
Reputation: 0
Joined: 16 Jul 2007 Posts: 498
|
Posted: Fri Aug 17, 2007 7:46 am Post subject: |
|
|
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 |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Fri Aug 17, 2007 7:48 am Post subject: |
|
|
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 |
|
 |
jeremydd Master Cheater
Reputation: 0
Joined: 16 Jul 2007 Posts: 498
|
Posted: Fri Aug 17, 2007 7:52 am Post subject: |
|
|
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 |
|
 |
UnLmtD Grandmaster Cheater
Reputation: 0
Joined: 13 Mar 2007 Posts: 894 Location: Canada
|
Posted: Fri Aug 17, 2007 7:55 am Post subject: |
|
|
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 |
|
 |
jeremydd Master Cheater
Reputation: 0
Joined: 16 Jul 2007 Posts: 498
|
|
Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Fri Aug 17, 2007 10:43 am Post subject: |
|
|
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 |
|
 |
Zombi3 Expert Cheater
Reputation: 0
Joined: 02 Aug 2007 Posts: 144
|
Posted: Fri Aug 17, 2007 11:23 am Post subject: |
|
|
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= |
_________________
|
|
Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Fri Aug 17, 2007 11:31 am Post subject: |
|
|
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 |
|
 |
poopnuggets Newbie cheater
Reputation: 0
Joined: 22 Aug 2007 Posts: 13
|
Posted: Wed Aug 22, 2007 1:56 pm Post subject: |
|
|
can one of you give me a link to download visual basic 6
_________________
The meaning of life is............................ |
|
Back to top |
|
 |
|