Register for your free account! | Forgot your password?

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

  • 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 07/24/2012, 20:56   #106
 
jazzdwayouwar's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 69
Received Thanks: 25
is this what you are talking sir?

Quote:
#define ADDR_BASE 0x0B8BBF0
#define OFFSET_BAR_COMBO 0x73a1
#define OFFSET_VALUE_COMBO 0x7384
if (GetKeyState(VK_F9) < 0)
{
int i = 0;
while(i == 0){

DWORD BAR_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(BAR_COMBO+OFFSET_BAR_COMBO) = 0;

DWORD VALUE_COMBO = *(DWORD*)ADDR_BASE;
*(DWORD*)(VALUE_COMBO+OFFSET_VALUE_COMBO) = 0;

if (GetKeyState(VK_F10) < 0)
i = 1;
Sleep(1);
}
}
thanks fror your response..

what specific tutorial sir that i should search??

thanks
jazzdwayouwar is offline  
Old 07/24/2012, 21:30   #107
 
lintekens02's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 61
Received Thanks: 79
Successfully compiled one.. now to add some other stuff.. 2 thumbs up to TS ^_^
lintekens02 is offline  
Old 07/25/2012, 04:01   #108
 
bartbilf's Avatar
 
elite*gold: 10
Join Date: May 2008
Posts: 1,803
Received Thanks: 1,947
Quote:
Originally Posted by deluxor View Post
Thanks to all "memory editing tools" released, next Cabal update will come with ASLR.

****.
source?
bartbilf is offline  
Old 07/25/2012, 04:21   #109
 
elite*gold: 0
Join Date: Apr 2008
Posts: 116
Received Thanks: 41
yeah where the source because it is weird cabal with ASLR.....
feiver2000 is offline  
Old 07/25/2012, 05:08   #110
 
elite*gold: 0
Join Date: May 2010
Posts: 16
Received Thanks: 4
even its true its hackable but a litel harder to make us stronger
alucardhxh is offline  
Old 07/25/2012, 11:28   #111
 
lintekens02's Avatar
 
elite*gold: 0
Join Date: Jun 2012
Posts: 61
Received Thanks: 79
Quote:
Originally Posted by deluxor View Post
Thanks to all "memory editing tools" released, next Cabal update will come with ASLR.

****.
Address space layout randomization? where did you get that info??

EDIT: if they would be successful in doing. well this kind of security is hard for them to.. this is a new technology, its not perfect.
lintekens02 is offline  
Old 07/25/2012, 15:20   #112
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
having trouble injecting my dll into cabalmain, saying unable to open process

using standard injector.
syndrah is offline  
Old 07/25/2012, 16:55   #113
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
how is this? i'm a noob without the skills of a programmer but im an IT but i still did'nt take my programming subjects.

i got all of these errors .


1>------ Build started: Project: DLLMain, Configuration: Debug Win32 ------
1> DLLMain.cpp
1>DLLMain.cpp(11): error C2146: syntax error : missing ';' before identifier 'APIENTRY'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2146: syntax error : missing ';' before identifier 'DllMain'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2065: 'HMODULE' : undeclared identifier
1>DLLMain.cpp(11): error C2146: syntax error : missing ')' before identifier 'hModule'
1>DLLMain.cpp(11): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
1>DLLMain.cpp(11): error C2059: syntax error : ')'
1>DLLMain.cpp(12): error C2143: syntax error : missing ';' before '{'
1>DLLMain.cpp(12): error C2447: '{' : missing function header (old-style formal list?)
1>DLLMain.cpp(25): error C2065: 'VK_F11' : undeclared identifier
1>DLLMain.cpp(25): error C3861: 'GetKeyState': identifier not found
1>DLLMain.cpp(27): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(27): error C2059: syntax error : ')'
1>DLLMain.cpp(28): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(28): error C2059: syntax error : ')'
1>DLLMain.cpp(29): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(29): error C2059: syntax error : ')'
1>DLLMain.cpp(32): error C2065: 'VK_F12' : undeclared identifier
1>DLLMain.cpp(32): error C3861: 'GetKeyState': identifier not found
1>DLLMain.cpp(34): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(34): error C2059: syntax error : ')'
1>DLLMain.cpp(35): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(35): error C2059: syntax error : ')'
1>DLLMain.cpp(36): error C2065: 'DWORD' : undeclared identifier
1>DLLMain.cpp(36): error C2059: syntax error : ')'
1>DLLMain.cpp(39): error C3861: 'Sleep': identifier not found
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
rhonapearl is offline  
Old 07/25/2012, 17:01   #114
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
it would help if you provided the code.

also its unusual those errors your getting should show up at all, try adding this include line.

PHP Code:
#include "windows.h" 
this should solve most if not all of those errors.
syndrah is offline  
Thanks
1 User
Old 07/25/2012, 17:04   #115
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
Quote:
Originally Posted by syndrah View Post
it would help if you provided the code.
the code is the code of mr PSCBots

Quote:
Originally Posted by syndrah View Post
it would help if you provided the code.

also its unusual those errors your getting should show up at all, try adding this include line.

PHP Code:
#include "windows.h" 
this should solve most if not all of those errors.
now i added that lines , i only got these errors sir.


1>------ Build started: Project: DLLMain, Configuration: Debug Win32 ------
1> DLLMain.cpp
1>c:\Users\ren\documents\visual studio 2010\Projects\DLLMain\DLLMain\DLLMain.cpp : warning C4747: Calling managed '_DllMain@12': Managed code may not be run under loader lock, including the DLL entrypoint and calls reached from the DLL entrypoint
1> .NETFramework,Version=v4.0.AssemblyAttributes.cpp
1>DLLMain.obj : error LNK2028: unresolved token (0A00001E) "extern "C" short __stdcall GetKeyState(int)" (?GetKeyState@@$$J14YGFH@Z) referenced in function "void __cdecl Start(void)" (?Start@@$$FYAXXZ)
1>DLLMain.obj : error LNK2019: unresolved external symbol "extern "C" short __stdcall GetKeyState(int)" (?GetKeyState@@$$J14YGFH@Z) referenced in function "void __cdecl Start(void)" (?Start@@$$FYAXXZ)
1>c:\users\ren\documents\visual studio 2010\Projects\DLLMain\Debug\DLLMain.dll : fatal error LNK1120: 2 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
rhonapearl is offline  
Old 07/25/2012, 17:07   #116
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
so you copy+pasted it? psbots put that code there with mistakes on purpose to weed out the noobs out so the people who WANT to learn will persevere. if you copy and pasted it without understanding it then you just might want to quit now.

Not trying to be a douche, but you wont learn if people spoonfeed you, you got the internet google your problems.
syndrah is offline  
Thanks
1 User
Old 07/25/2012, 17:09   #117
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
ok sir . i'll try to solve this.
rhonapearl is offline  
Old 07/25/2012, 17:09   #118
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
copy the exact code you have right now.

also just curious if anyone can address my injection problem

"cannot open procesS"
syndrah is offline  
Old 07/25/2012, 17:33   #119
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
i think my problem is i dont have sdk . i'll just download it for my windows.h library .
rhonapearl is offline  
Old 07/25/2012, 17:34   #120
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
there you go.
syndrah 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 07:31.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

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