Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Cabal Online > Cabal Guides & Templates
You last visited: Today at 22:29

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release][C++ Code] GM/AOE/Range

Discussion on [Release][C++ Code] GM/AOE/Range within the Cabal Guides & Templates forum part of the Cabal Online category.

Reply
 
Old 09/08/2012, 15:02   #241
 
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
wow i got already the code for AOE. its working fine now. but got stuck with the combo hack. can you share the code for combo hack please... thanks in advance...
audreyxp2012 is offline  
Old 09/08/2012, 15:17   #242
 
elite*gold: 0
Join Date: Dec 2009
Posts: 11
Received Thanks: 6
Quote:
Originally Posted by denz0892 View Post
Hey I just wanna ask on how can i compile the codes in visual c++? can someone give me some idea, i dont know where to save the file and make it like "cheat.dll" its just compiling and i dont know if the file is sucessfully save. -_- this makes my brain sick, since 8:35am i am trying to search look and find on how can i compile the codes and make it a .dll file
download visual c++,install it
make new project, select win 32 console application
enter your dll name, click OK
click next button
select DLL press finish
delete the dllmain.cpp at the left side


add this code:

#include "stdafx.h"

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
//your code here
}


and press F7

if u do everything well u can look this in output:

1>------ Build started: Project: cheat01, Configuration: Debug Win32 ------
1> stdafx.cpp
1> cheat01.cpp
1> cheat01.vcxproj -> c:\users\hangya\documents\visual studio 2010\Projects\cheat01\Debug\cheat01.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========


sry for my bad english
joci9 is offline  
Thanks
3 Users
Old 09/08/2012, 16:00   #243
 
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
combo hack doesnt work... is the address for combo hack same with the old one?
audreyxp2012 is offline  
Old 09/08/2012, 18:15   #244
 
elite*gold: 0
Join Date: Dec 2010
Posts: 69
Received Thanks: 54
i cant make NSD work

Quote:
if (GetKeyState(VK_F7) < 0) // Turn On
{
int x = 0;
while(x == 0){
DWORD NODELAY = *(DWORD*)ADDR_BASE;
*(DWORD*)(NODELAY+OFFSET_NODELAY) = 1629697;
if (GetKeyState(VK_F8) < 0)
x = 1;
}
Sleep(1);
glemor1234 is offline  
Old 09/08/2012, 19:54   #245
 
Glenox's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 106
Received Thanks: 712
Quote:
Originally Posted by keypress14 View Post
#include <windows.h>

#define ADDR_GM 0x1076C40
#define ADDR_AOE 0x10C730C
#define ADDR_RANGE 0x10C62D8

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}

if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}

Sleep(1);
}
}

i compiled this code and inject but its not working
i got the address here

inject the dll into cabalmain.exe!!! and the game Press F11 to On and Press F12 to Off!!
Glenox is offline  
Old 09/09/2012, 13:24   #246
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
Quote:
Originally Posted by Glenox View Post
inject the dll into cabalmain.exe!!! and the game Press F11 to On and Press F12 to Off!!
ITS not woking..
I used Dev-C++ to compile this code..
keypress14 is offline  
Old 09/09/2012, 15:05   #247
 
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
is the old address for combo hack same with the latest address?
audreyxp2012 is offline  
Old 09/09/2012, 15:14   #248
 
elite*gold: 0
Join Date: Nov 2009
Posts: 25
Received Thanks: 9
the combo offset didn't change in the latest ph update.
lowkey04 is offline  
Old 09/09/2012, 15:19   #249
 
denz0892's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 173
Received Thanks: 100
Quote:
Originally Posted by joci9 View Post
download visual c++,install it
make new project, select win 32 console application
enter your dll name, click OK
click next button
select DLL press finish
delete the dllmain.cpp at the left side


add this code:

#include "stdafx.h"

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
//your code here
}


and press F7

if u do everything well u can look this in output:

1>------ Build started: Project: cheat01, Configuration: Debug Win32 ------
1> stdafx.cpp
1> cheat01.cpp
1> cheat01.vcxproj -> c:\users\hangya\documents\visual studio 2010\Projects\cheat01\Debug\cheat01.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========


sry for my bad english
thanks
denz0892 is offline  
Old 09/09/2012, 15:32   #250
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
ZOOM HACK

who knows how to change ZOOM HACK VALUE USING THIS ADDRESS : 004E919E = 90 90 90
keypress14 is offline  
Old 09/09/2012, 15:35   #251
 
elite*gold: 0
Join Date: Nov 2009
Posts: 25
Received Thanks: 9
zoom hack only works with a bypass.
lowkey04 is offline  
Old 09/09/2012, 17:01   #252
 
elite*gold: 0
Join Date: Aug 2012
Posts: 4
Received Thanks: 0
about the auto attack sir
mannypacute is offline  
Old 09/09/2012, 19:50   #253
 
osyris124's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 137
Received Thanks: 8
Hello, I got this error when building..


1>------ Build started: Project: v3, Configuration: Debug Win32 ------
1> dllmain.cpp
1>v3.obj : error LNK2005: _DllMain@12 already defined in dllmain.obj
1>v3.obj : error LNK2005: "void __cdecl Start(void)" (?Start@@YAXXZ) already defined in dllmain.obj
1>C:\Users\ChiefInspector\Desktop\v3\Debug\v3.dll : fatal error LNK1169: one or more multiply defined symbols found
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


and this is my code..


#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>

#define ADDR_GM 0x1076C40
#define ADDR_AOE 0x10C730C
#define ADDR_RANGE 0x10C7308

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}

if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}

Sleep(1);
}
}


Can anyone tell me whats the error? Thanks a lot.. I really want to learn this.. Thank you.
osyris124 is offline  
Old 09/09/2012, 20:43   #254
 
elite*gold: 0
Join Date: Jan 2009
Posts: 71
Received Thanks: 7
@UP delete dllmain.obj

I have a question... Why everytime I try to activate my injected .dll game closes?
AshCrocK is offline  
Old 09/09/2012, 21:47   #255
 
Glenox's Avatar
 
elite*gold: 0
Join Date: Sep 2012
Posts: 106
Received Thanks: 712
Quote:
Originally Posted by osyris124 View Post
Hello, I got this error when building..


1>------ Build started: Project: v3, Configuration: Debug Win32 ------
1> dllmain.cpp
1>v3.obj : error LNK2005: _DllMain@12 already defined in dllmain.obj
1>v3.obj : error LNK2005: "void __cdecl Start(void)" (?Start@@YAXXZ) already defined in dllmain.obj
1>C:\Users\ChiefInspector\Desktop\v3\Debug\v3.dll : fatal error LNK1169: one or more multiply defined symbols found
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


and this is my code..


#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>

#define ADDR_GM 0x1076C40
#define ADDR_AOE 0x10C730C
#define ADDR_RANGE 0x10C7308

void Start();

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
{
if (ulReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Start, 0, 0, 0);
}

return TRUE;
}

void Start()
{
while (1)
{
if (GetKeyState(VK_F11) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 100;
*(DWORD*)ADDR_RANGE = 7;
}

if (GetKeyState(VK_F12) < 0) // Turn Off
{
*(DWORD*)ADDR_GM = 0;
*(DWORD*)ADDR_AOE = 0;
*(DWORD*)ADDR_RANGE = 0;
}

Sleep(1);
}
}


Can anyone tell me whats the error? Thanks a lot.. I really want to learn this.. Thank you.
learn C++
Glenox is offline  
Reply


Similar Threads Similar Threads
Rsro range code.
06/14/2011 - SRO Coding Corner - 0 Replies
I am using Flex Hex program but i cant find how change mob selection range need help. Please Tel my how i can find code.
Range modify ESRO code chaning?
06/14/2011 - SRO Coding Corner - 3 Replies
having toruble with creating a dll... the guy posted the source which is below for his dll that goes with his loader: esroLoaderdll.cpp: #include "windows.h" void WriteMemory(DWORD address, LPVOID patch, DWORD size) { DWORD oldProtect; VirtualProtect((LPVOID)address, 4, PAGE_EXECUTE_READWRITE, &oldProtect); memcpy((LPVOID)address, patch, size);
Range modify EXRO code chaning?
06/13/2011 - SRO Coding Corner - 0 Replies
# delete request no idea why it posted twice
[Release] MS Range CheatEngine
03/13/2010 - S4 League Hacks, Bots, Cheats & Exploits - 19 Replies
entfernt da nur gemault wird
[RELEASE] ATK Range Hack v1.0b
02/19/2008 - Metin2 - 16 Replies
ATK Range Hack v1.0b Working after update ! To use this hack: 1. Start the (ATK Range Hack.exe). 2. Start Metin2. 3. Login into youre acc.



All times are GMT +1. The time now is 22:30.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.