Register for your free account! | Forgot your password?

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

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

Advertisement



[Release] Wallhack method all Client / find Maparea pointer

Discussion on [Release] Wallhack method all Client / find Maparea pointer within the Cabal Guides & Templates forum part of the Cabal Online category.

Reply
 
Old 10/05/2012, 12:52   #61
 
elite*gold: 0
Join Date: Jul 2012
Posts: 48
Received Thanks: 7
Quote:
Originally Posted by кev View Post
Olly or anything that's able to search for byte sequences.



/spoonfed

What should be the value..?
jhazee21 is offline  
Old 10/05/2012, 16:29   #62
 
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
thanks to all finally got it to work in c++
caine291ph is offline  
Old 10/05/2012, 19:21   #63
 
elite*gold: 0
Join Date: Jul 2012
Posts: 48
Received Thanks: 7
I get correctly the base address and the offset, and I change the value to 0, but nothing happen. Please help..
0107BF90
40814
jhazee21 is offline  
Old 10/05/2012, 21:19   #64
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
#include "stdafx.h"
#include <windows.h>



void Start();

int a;
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(NULL, "Successfully Injected", "Trainer", MB_OK);
}

return TRUE;

}


void Start()
{
while (1)
{

if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);


for(a = 0; a<= 0x3ffff; a++)
{
memset( WH_Start , 0x0, 0x40000);
}

}




Sleep(1);
}
}


anyone can correct this?
keypress14 is offline  
Old 10/06/2012, 03:54   #65
 
elite*gold: 0
Join Date: Aug 2008
Posts: 51
Received Thanks: 118
Quote:
Originally Posted by keypress14 View Post
#include "stdafx.h"
#include <windows.h>



void Start();

int a;
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(NULL, "Successfully Injected", "Trainer", MB_OK);
}

return TRUE;

}


void Start()
{
while (1)
{

if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);


for(a = 0; a<= 0x3ffff; a++)
{
memset( WH_Start , 0x0, 0x40000);
}

}




Sleep(1);
}
}


anyone can correct this?
if you're using the for loop do not use memset
you can eliminate for loop just use memset

hope it helps ^^
caine291ph is offline  
Old 10/06/2012, 04:23   #66
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
Quote:
Originally Posted by caine291ph View Post
if you're using the for loop do not use memset
you can eliminate for loop just use memset

hope it helps ^^
DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);
memset( WH_Start , 0x0, 0x40000);

ITS OK??
keypress14 is offline  
Old 10/10/2012, 15:26   #67
 
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
kypress, i also tried it, the weird thing is that you cannot find the value of the base address. Something like the memory region is protected for reading. If your going to debug it you'll find that *(DWORD*)0x0B87170 returns 0. It's something that GG locks this portion of region.

CE can find this value because you use the CE without GG
rantenor is offline  
Old 10/11/2012, 13:23   #68
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
@rantenor

CE IS not working in Mystery I dont know why..
if i used that code my PC get Hang..
keypress14 is offline  
Old 10/11/2012, 13:41   #69
 
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
keypress, yes your pc will hang cause you will get the very wrong WH_Start address
rantenor is offline  
Old 10/11/2012, 13:58   #70
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
pls tell me what should i code..

DWORD *WH_Start = (DWORD*)(*(DWORD*)0x0B87170 + 0x40814);
memset( WH_Start , 0x0, 0x40000);

0x0B87170 = MC Base Address
0x40814 = This one static right?
pls tell me what to do..tnx

Anyone can debug this


if (GetKeyState(VK_F12) < 0) // Turn On
{

DWORD WH_StartA = *(DWORD*)("fixedmain.exe+C7CF90" +0x40814);
for(i = 0; i<= 0x3ffff; i++)
{
DWORD WH_StartB = *(DWORD*)(WH_StartA+i);
*(DWORD*)WH_StartB = 0;
}

}

Address from cabal PH fixedmain tnx.. im noob in C++ i just want to learn
keypress14 is offline  
Old 10/12/2012, 14:32   #71
 
elite*gold: 0
Join Date: Jan 2011
Posts: 53
Received Thanks: 36
dont bother to fix your code cause no problem with it. The bottomline is that this guide does not work anymore for dll injection
rantenor is offline  
Old 10/14/2012, 12:43   #72
 
Streidominating's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 58
Received Thanks: 4
nevermind my post.

feel free to delete
Streidominating is offline  
Old 10/14/2012, 18:04   #73
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 06 00 00 00 06 00 00 00 06 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 07 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00


i tried this on MC but no address found?any comment?
keypress14 is offline  
Old 10/15/2012, 16:27   #74
 
Wayntressierts's Avatar
 
elite*gold: 0
Join Date: Feb 2012
Posts: 424
Received Thanks: 422
Quote:
Originally Posted by rantenor View Post
dont bother to fix your code cause no problem with it. The bottomline is that this guide does not work anymore for dll injection
wrong
Wayntressierts is offline  
Thanks
1 User
Old 10/15/2012, 17:28   #75
 
elite*gold: 0
Join Date: Apr 2010
Posts: 65
Received Thanks: 9
yeh really wrong still working on PH ^^
keypress14 is offline  
Reply


Similar Threads Similar Threads
Release New Method of [Lock N Load + SmartzWHZ Wallhack] RELEASE FREE!!
09/22/2011 - Soldier Front Philippines - 12 Replies
#removed
Release New Method of Wallhack Bypasser by sQuare02 [No Need ISO Method]
08/05/2010 - Soldier Front Philippines - 5 Replies
100% Working sa Window XP Wallhack pero FREE.. Nakuha ko lng to sa ka shop ko at eto yung gamit nya na wall... and it's 100% working in PSF... Ito ang ginagamit nmin ngayon sa cafe.. Eto nga pala yng Download Link.. sQuare02 Wallhack Bypasser.rar sQuare02 Wallhack Bypasser.rar sQuare02 Wallhack Bypasser.rar Eto rin yng Proof..



All times are GMT +1. The time now is 13: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.