Register for your free account! | Forgot your password?

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

  • 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/25/2012, 17:34   #121
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
Quote:
Originally Posted by syndrah View Post
there you go.
am i right sir?
rhonapearl is offline  
Old 07/25/2012, 17:37   #122
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
no clue, compile it and see.
syndrah is offline  
Old 07/25/2012, 17:49   #123
 
rhonapearl's Avatar
 
elite*gold: 0
Join Date: Mar 2012
Posts: 53
Received Thanks: 1
it's still downloading . too large file . hhe .
rhonapearl is offline  
Old 07/25/2012, 19:23   #124
 
elite*gold: 0
Join Date: May 2008
Posts: 73
Received Thanks: 288
ASLR is hard to integrate?
Of course not.
They just need to compile cabalmain.exe with /DYNAMICBASE parameter.

Well, of course they need to activate ASLR in all other resources such as DLL's, everything imported into cabalmain, but is not too hard

;D
deluxor is offline  
Old 07/25/2012, 20:39   #125
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
deluxor can you help me out it says cannot open process when i try to inject a dll into cabal
syndrah is offline  
Old 07/25/2012, 20:40   #126
 
Shiroxz's Avatar
 
elite*gold: 0
Join Date: Jun 2011
Posts: 628
Received Thanks: 24
not bad bro
Shiroxz is offline  
Old 07/25/2012, 22:17   #127
 
elite*gold: 0
Join Date: May 2008
Posts: 73
Received Thanks: 288
Quote:
Originally Posted by syndrah View Post
deluxor can you help me out it says cannot open process when i try to inject a dll into cabal
That error occurs when you are trying to inject something into a protected process, in this case when you are trying to inject your DLL, gameguard already have protected all the memory area of cabal.

Solution: Inject it first.
deluxor is offline  
Old 07/26/2012, 00:37   #128
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
"failed to create thread in remote process"
syndrah is offline  
Old 07/26/2012, 02:34   #129
 
elite*gold: 0
Join Date: Dec 2009
Posts: 9
Received Thanks: 1
Can someone tell me what's wrong?

*(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)ADDR_BASE + 0x20) + 0x118) + 0x4a1c)=1;

I'm trying to add multiple-level pointer and change the value to 1.
zremchs21 is offline  
Old 07/26/2012, 02:47   #130
 
elite*gold: 0
Join Date: May 2012
Posts: 14
Received Thanks: 0
how to use this ? ..please help me
cdaguman022 is offline  
Old 07/26/2012, 10:10   #131
 
jslvdr's Avatar
 
elite*gold: 0
Join Date: Jun 2008
Posts: 129
Received Thanks: 20
Quote:
Originally Posted by zremchs21 View Post
Can someone tell me what's wrong?

*(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)ADDR_BASE + 0x20) + 0x118) + 0x4a1c)=1;

I'm trying to add multiple-level pointer and change the value to 1.

Try to define first your offsets:

#define ADDR_OFF1 0x20
#define ADDR_OFF2 0x118
#define ADDR_OFF3 0x4a1c


*(DWORD*)(*(DWORD*)ADDR_BASE + ADDR_OFF1) = 1;
*(DWORD*)(*(DWORD*)ADDR_BASE + ADDR_OFF2) = 1;
*(DWORD*)(*(DWORD*)ADDR_BASE + ADDR_OFF3) = 1;

I saw this code only in the net.. Hope it helps you.
jslvdr is offline  
Old 07/26/2012, 11:32   #132
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
@jslvdr
i think he wants to know how to code multi lvl pointer addy`s
genesisVI is offline  
Old 07/26/2012, 17:38   #133
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
need some guidance cant seem to get5 this to work at all, movement speed or anything doesnt work.

PHP Code:
#include "stdafx.h"
#define    ADDR_GM        0x1075C48
#define    ADDR_AOE    0x10C62FC
#define    ADDR_RANGE    0x10C62F8
#define    ADDR_BASE    0x0B8BBF0
#define A_PERCOMBO    0x7384
#define A_BARCOMBO    0x7384
#define A_WALKRUN    0x0204
#define A_NOPNLTY    0x4764
#define A_NODELAY    0x72D4
void Start();
void Start(){
    while (
1){
        if(
GetKeyState(VK_F12) < 0){
            
int aoecheck 1;
            
//enable
            
if(aoecheck == 0){
                *(
DWORD*)ADDR_GM 2;
                *(
DWORD*)ADDR_AOE 100;
                *(
DWORD*)ADDR_RANGE 7;
                
aoecheck 1;
            
//disable
            
}else if(aoecheck == 1){
                *(
DWORD*)ADDR_GM 0;
                *(
DWORD*)ADDR_AOE 0;
                *(
DWORD*)ADDR_RANGE 0;
                
aoecheck 0;
            }
        }
        if(
GetKeyState(VK_F11) < 0){
            
int dlycheck 1;
            if(
dlycheck == 0){
                
DWORD NODELAY = *(DWORD*)ADDR_BASE;*(DWORD*)(NODELAY+A_NODELAY) = 1629793;
                
dlycheck 1;
            }else if(
dlycheck == 1){
                
DWORD NODELAY = *(DWORD*)ADDR_BASE;*(DWORD*)(NODELAY+A_NODELAY) = 1629793;
                
dlycheck 0;
            }
        }
        
DWORD BAR_COMBO = *(DWORD*)ADDR_BASE;*(DWORD*)(BAR_COMBO+A_BARCOMBO) = 0;
        
DWORD VALUE_COMBO = *(DWORD*)ADDR_BASE;*(DWORD*)(VALUE_COMBO+A_PERCOMBO) = 0;
        
DWORD WALKRUN = *(DWORD*)ADDR_BASE;*(DWORD*)(WALKRUN+A_WALKRUN) = 600;
        
DWORD NOPNLTY = *(DWORD*)ADDR_BASE;*(DWORD*)(NOPNLTY+A_NOPNLTY) = 0;
        
Sleep(1);
    }

syndrah is offline  
Old 07/26/2012, 17:42   #134
 
genesisVI's Avatar
 
elite*gold: 0
Join Date: Jul 2011
Posts: 796
Received Thanks: 434
walk speed is float so ... u nid to call the value as float
and u dont have any hotkey on the lower part
genesisVI is offline  
Old 07/26/2012, 18:24   #135
 
elite*gold: 0
Join Date: Nov 2008
Posts: 224
Received Thanks: 17
i know, i want those to be on all the time.

you missed my point, none of the addresses seems to work, but when i load up cheat engine i check the addresses in there works great and its the same addresses.
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:09.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.