|
You last visited: Today at 16:58
Advertisement
[Release]Testsystem Source
Discussion on [Release]Testsystem Source within the Kal Hacks, Bots, Cheats & Exploits forum part of the Kal Online category.
01/28/2012, 01:25
|
#16
|
elite*gold: 42
Join Date: Jun 2008
Posts: 5,425
Received Thanks: 1,888
|
while(true) without any sleeps isn't good ;o
|
|
|
01/28/2012, 01:58
|
#17
|
elite*gold: 0
Join Date: Jan 2008
Posts: 310
Received Thanks: 50
|
Quote:
Originally Posted by MoepMeep
while(true) without any sleeps isn't good ;o
|
Hmm its sure thats why i always put a Sleep(1) --> 4
anyway nvm, its work fine on hotkeys, my pc is just a ****.
|
|
|
01/28/2012, 09:41
|
#18
|
elite*gold: 0
Join Date: Jul 2011
Posts: 754
Received Thanks: 122
|
Quote:
Originally Posted by hoseta
my pc just is ****.
|
u mad?
|
|
|
01/28/2012, 10:44
|
#19
|
elite*gold: 0
Join Date: Nov 2011
Posts: 269
Received Thanks: 87
|
Quote:
Originally Posted by hoseta
Hmm its sure thats why i always put a Sleep(1) --> 4
anyway nvm, its work fine on hotkeys, my pc is just a ****.
|
Get the window handle of the client where the dll is injected & then check it with the GetForeGroundWindow function...So your keys will only affect the client in foreground and you can use multiple clients..
Example:
Code:
if((GetAsyncKeyState(VK_LSHIFT)&0x8000) && (GetForegroundWindow() == handle->kalhw))
|
|
|
01/28/2012, 12:23
|
#20
|
elite*gold: 0
Join Date: Oct 2007
Posts: 474
Received Thanks: 159
|
added detours.h and detours.lib to folder // sdk/windows/v7.04A/lib and include
still got this error
Quote:
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuil d.targets(990,5): warning MSB8012: TargetPath(C:\***\Debug\TestsystemWINAPI.dll) entspricht nicht dem OutputFile-Eigenschaftswert (C:\Users\Sonikk69\Desktop\Testsystem\Testsystem.d ll) von Linker. Das Projekt wird daher möglicherweise nicht ordnungsgemäß erstellt. Damit dieses Problem behoben werden kann, müssen die Eigenschaftswerte für $(OutDir), $(TargetName) und $(TargetExt) dem in %(Link.OutputFile) angegebenen Wert entsprechen.
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuil d.targets(992,5): warning MSB8012: TargetName(TestsystemWINAPI) entspricht nicht dem OutputFile-Eigenschaftswert (Testsystem) von Linker. Das Projekt wird daher möglicherweise nicht ordnungsgemäß erstellt. Damit dieses Problem behoben werden kann, müssen die Eigenschaftswerte für $(OutDir), $(TargetName) und $(TargetExt) dem in %(Link.OutputFile) angegebenen Wert entsprechen.
1> LINK : Programmdatenbank "C:\***ßDebug\TestsystemWINAPI.pdb" fehlt; vollständiger Link wird durchgeführt.
1>detours.lib(detours.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(detours.obj)" oder an "C:\***\Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(disasm.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(disasm.obj)" oder an "C:\***\Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(detours.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(detours.obj)" oder an "C:\***\Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(disasm.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(disasm.obj)" oder an "C:\***\Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1> TestsystemWINAPI.vcxproj -> C:\***\Debug\TestsystemWINAPI.dll
|
|
|
|
01/28/2012, 15:54
|
#21
|
elite*gold: 0
Join Date: Jan 2008
Posts: 310
Received Thanks: 50
|
@hello123456
Try do the fallow steps, click right on project name properties -> and change Character Set to -> Use Multi-Bytes Character Set
@Roronoa Z.
i did
Code:
........
kpThread = (HANDLE)_beginthreadex(NULL,0,&kpMainThread,NULL,NULL,&kpThreadID);
.......
unsigned int __stdcall kpMainThread(void * start_parameter)
{
while(true)
{
Sleep(1);
if (GetAsyncKeyState...){...}
........
}
return 0;
}
........
also i added if GetForegroundWindow() is kal win sleep(1000) into while else sleep(1)
and now its gr8.
|
|
|
01/28/2012, 16:19
|
#22
|
elite*gold: 0
Join Date: Oct 2007
Posts: 474
Received Thanks: 159
|
ty got this error fixed and im able to compile it now ... only 1 error left:
Quote:
1>detours.lib(detours.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(detours.obj)" oder an "C:\***Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(disasm.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(disasm.obj)" oder an "C:\***Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(detours.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(detours.obj)" oder an "C:\***Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
1>detours.lib(disasm.obj) : warning LNK4099: PDB "detours.pdb" wurde nicht mit "detours.lib(disasm.obj)" oder an "C:\***Debug\detours.pdb" gefunden; Objekt wird verknüpft, als ob keine Debuginformationen vorhanden wären.
|
|
|
|
01/28/2012, 16:30
|
#23
|
elite*gold: 42
Join Date: Jun 2008
Posts: 5,425
Received Thanks: 1,888
|
thats no error, thats a warning. You can ignore it.
|
|
|
01/28/2012, 16:34
|
#24
|
elite*gold: 0
Join Date: Oct 2007
Posts: 474
Received Thanks: 159
|
Quote:
Originally Posted by MoepMeep
thats no error, thats a warning. You can ignore it.
|
thx moep
|
|
|
01/28/2012, 16:54
|
#25
|
elite*gold: 0
Join Date: Jan 2008
Posts: 310
Received Thanks: 50
|
Go again to Properties -> Linker -> Command Line and add /ignore:4099
|
|
|
01/28/2012, 18:32
|
#26
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
Code:
C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(990,5): warning MSB8012: TargetPath(C:\Documents and Settings\Martin\Desktop\he\Debug\TestsystemWINAPI.dll) does not match the Linker's OutputFile property value (C:\Users\Sonikk69\Desktop\Testsystem\Testsystem.dll). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).
1>C:\Program Files\MSBuild\Microsoft.Cpp\v4.0\Microsoft.CppBuild.targets(992,5): warning MSB8012: TargetName(TestsystemWINAPI) does not match the Linker's OutputFile property value (Testsystem). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Link.OutputFile).
i made samething as you saied to hello but it doesn't want to compile
EDIT: nwm i got it to work
|
|
|
01/29/2012, 15:34
|
#27
|
elite*gold: 0
Join Date: Aug 2009
Posts: 17
Received Thanks: 0
|
I have problem with Detours 1.5 i added the .h to Headerdateien and no work the build :S
|
|
|
01/29/2012, 17:04
|
#28
|
elite*gold: 55
Join Date: Mar 2006
Posts: 4,582
Received Thanks: 1,539
|
Guys learn the Basics of C++?
|
|
|
01/30/2012, 19:44
|
#29
|
elite*gold: 0
Join Date: Feb 2008
Posts: 1,105
Received Thanks: 186
|
any1 knows how to fix speed hack as on some servers it gives c/l?
|
|
|
01/30/2012, 20:12
|
#30
|
elite*gold: 55
Join Date: Mar 2006
Posts: 4,582
Received Thanks: 1,539
|
cuz u set to high speed? or koemv2 just got a speedcheck
|
|
|
 |
|
Similar Threads
|
[RELEASE] [OPEN SOURCE] CE 5.5 Pointer to AutoIt Source-Code
02/13/2011 - AutoIt - 6 Replies
Habe heute erst gemerkt, dass es hier eine AutoIt Sektion gibt xD also poste ich mal mein Programm mit rein.
Funktionsweise:
1. in CE Rechtsklick auf den Pointer und auf "Copy" klicken
2. in meinem Programm auf "Code generieren" klicken
3. In euer Scite gehen und einfügen
Hier ist der Source Code vom Programm:
|
[Release]How To Make Tq Source Work + Working Source + Server ByBass + Commands
12/08/2008 - CO2 PServer Guides & Releases - 15 Replies
1: How To Make The Server Work
In fact, before other people did not just let ACC now with hi EACC Columbia landing on the settlement of the issue, and the rest is our own how to improve the content of those interested can improve the next. MY MY set and the same. INI MAP INI files and MAP with the client-to-date coverage of the account. server.dat ! And then as long as the client will be able to modify server.dat!
127.0.0.1 192.168.0.1 192.168.1.1 IP。 Please do generally use...
|
[Release] Project-X Source (Lolmasters Secret Source)
09/29/2008 - CO2 Private Server - 11 Replies
Projekt-X Source (Lolmasters Secret Source)
Example that is in the source, stigma guards
LINK: RapidShare: Easy Filehosting
Well People search for things in this source that others dont got and use it for your server ;) or just release it to get many thankes:p
|
All times are GMT +1. The time now is 16:58.
|
|