Register for your free account! | Forgot your password?

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

  • 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/09/2012, 22:15   #256
 
elite*gold: 0
Join Date: Feb 2012
Posts: 91
Received Thanks: 4
Hi Glenox, can you give us source of youre trainer?
MrLovelas is offline  
Old 09/09/2012, 22:17   #257
 
кev's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 130
Received Thanks: 184
People, people, people. Learn to understand your compiler. Makes your life a lot easier. And everyone else's too.

Quote:
Originally Posted by osyris124 View Post
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 ==========
Use search, this is the 3rd or 4th time I answer the same question on a same piece of code. Like your compiler is telling you, you've got DllMain defined twice in your source. Another entry is in the file which contents you just pasted and the other one is in "dllmain.cpp". You can delete dllmain.cpp and you're done.

But still, learn to know your compiler and the language before diving in head first.


Quote:
Originally Posted by AshCrocK View Post
@UP delete dllmain.obj
Makes no difference, that's not the cause.

Quote:
Originally Posted by AshCrocK View Post
I have a question... Why everytime I try to activate my injected .dll game closes?
Access violation most likely. Not all memory is readable or writable, check your addresses and offsets.
кev is offline  
Thanks
4 Users
Old 09/10/2012, 06:16   #258
 
denz0892's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 173
Received Thanks: 100
may i ask, whats wrong with my codes i've just added NSD, heres the 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


#define ADDR_NSD 0x0877784



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;
}
if (GetKeyState(VK_F5) < 0) // Turn On
{
*(DWORD*)ADDR_NSD = 1;
}
if (GetKeyState(VK_F6) < 0) // Turn Off
{
*(DWORD*)ADDR_NSD = 0;
}

Sleep(1);
}
}
denz0892 is offline  
Old 09/10/2012, 07:01   #259
 
osyris124's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 137
Received Thanks: 8
@ sir кev
.. Thank you for your response.. I really have no idea about C++ but im trying to understand it, but it seems its hard to understand.. Hehehe Anyway, ill try it again, ill delete the dllmain.cpp please guide me.. =p
osyris124 is offline  
Old 09/10/2012, 07:22   #260
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
Quote:
Originally Posted by osyris124 View Post
@ sir кev
.. Thank you for your response.. I really have no idea about C++ but im trying to understand it, but it seems its hard to understand.. Hehehe Anyway, ill try it again, ill delete the dllmain.cpp please guide me.. =p
u know how to make a new project right ?

now here is the trick

make an empty project

right click on the last folder on ur project pane
i think its resource folder or source not sure


then select new item

select a .cpp

now copy paste ur code

u nid to include "windows.h" if u got an error in stdafx.h

then right click on the .cpp select compile

then debug . its the play button on the top ..

then if everything go`s well and the build succeeded after u press the play button it would pop up a warning just ignore it

now go to

Documents. Visual Studio\projects\ur project name\debug

now ull see a dll there.. just inject it and ur done
genesisVI is offline  
Old 09/10/2012, 07:48   #261
 
elite*gold: 0
Join Date: Jul 2012
Posts: 4
Received Thanks: 0
tnx ive been trying to learn how you guys make hacks =) i cant believe i was able to compile your code and make it work many thanks men. =)
exninja is offline  
Old 09/10/2012, 15:07   #262
 
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
is the address for combo hack same with the address before it was patch?
audreyxp2012 is offline  
Old 09/10/2012, 15:18   #263
 
elite*gold: 0
Join Date: Nov 2009
Posts: 25
Received Thanks: 9
@audreyxp2012
i already answered you question on .
lowkey04 is offline  
Old 09/10/2012, 15:34   #264
 
elite*gold: 0
Join Date: Mar 2012
Posts: 30
Received Thanks: 0
@lowkey04
sir thanks for the reply. i got problem with my combo hack. it doesnt work.

can share me your code for combo hack please.
audreyxp2012 is offline  
Old 09/11/2012, 05:23   #265
 
osyris124's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 137
Received Thanks: 8
Thank you Mr.GenesisVI For the reply.. And Thank you, i used to compile now my DLL.
Im trying to add some more address for the hack.. Please Guide me again! Haha Thanks!

------------------------------------------

Sir, why is it, when i inject my cabal, the cabal stops? i got error..
osyris124 is offline  
Old 09/11/2012, 11:07   #266
 
elite*gold: 0
Join Date: Jul 2008
Posts: 8
Received Thanks: 0
I need help howto code zoom hack. How can I write the 3 (90 90 90) array of bytes into value?
joshua_1316 is offline  
Old 09/11/2012, 11:13   #267
 
fuckyourass's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 47
Received Thanks: 3
Now i really nid to review my notes and understanding about C++
fuckyourass is offline  
Old 09/11/2012, 11:42   #268
 
elite*gold: 0
Join Date: Aug 2012
Posts: 2
Received Thanks: 0
hey sir can you teach me how to create it??
mathoii01 is offline  
Old 09/11/2012, 12:31   #269
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
REP

Quote:
Originally Posted by joshua_1316 View Post
I need help howto code zoom hack. How can I write the 3 (90 90 90) array of bytes into value?
USED CE TO CONVERT ARRAY OF BYTES - 4BYTES
BUT IT ONLY WORKS IN BYPASS

Quote:
Originally Posted by denz0892 View Post
may i ask, whats wrong with my codes i've just added NSD, heres the 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


#define ADDR_NSD 0x0877784



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;
}
if (GetKeyState(VK_F5) < 0) // Turn On
{
*(DWORD*)ADDR_NSD = 1;
}
if (GetKeyState(VK_F6) < 0) // Turn Off
{
*(DWORD*)ADDR_NSD = 0;
}

Sleep(1);
}
}
#include "stdafx.h"

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

int Enabled;
int ShowHP=0;
int SpeedHack=0;


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);
MessageBoxA(HWND_DESKTOP,"Cheat Injected","By:CyberAngeL",MB_OK);
}
return TRUE;
}

void Start()
{
while (1)
{

if (GetKeyState(VK_F12) < 0) // Turn On
{
*(DWORD*)ADDR_GM = 2;
*(DWORD*)ADDR_AOE = 1500;
*(DWORD*)ADDR_RANGE = 30;
DWORD SPEEDHACK = *(DWORD*)0x0B8CBF0;
*(DWORD*)(SPEEDHACK+0x204) = 1142292480;

Enabled=1;
}

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

DWORD SPEEDHACK = *(DWORD*)0x0B8CBF0;
*(DWORD*)(SPEEDHACK+0x204) = 1138819072;

DWORD NODELAY = *(DWORD*)0x0B8CBF0;
*(DWORD*)(NODELAY+0x72d4) = 1236561;

Enabled=0;

}



if (Enabled==1)
{

DWORD NODELAY = *(DWORD*)0x0B8CBF0;
*(DWORD*)(NODELAY+0x72d4) = 1629697; //Freeze 1629697 = NSD (Dance, press D -> SP Eegen)

DWORD COMBO1 = *(DWORD*)0x0B8CBF0;
*(DWORD*)(COMBO1+0x73a0) = 0; //Freeze 0 = Use Whole Combo bar

DWORD COMBO2 = *(DWORD*)0x0B8CBF0;
*(DWORD*)(COMBO2+0x7384) = 0; //Freeze 0 = Always 1 Combo

}
Sleep(1);
}
}
keypress14 is offline  
Thanks
1 User
Old 09/11/2012, 22:44   #270
 
elite*gold: 0
Join Date: Sep 2012
Posts: 6
Received Thanks: 0
what's GM? i can't seem to understand that o.o
jasper324 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 00:05.


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.