| View previous topic :: View next topic |
| Author |
Message |
tdenisenko Grandmaster Cheater
Reputation: 0
Joined: 23 Oct 2007 Posts: 799 Location: Turkey
|
Posted: Sun Sep 21, 2008 9:50 am Post subject: [MapleStory] Help me on programming... |
|
|
i need help on making timed-autoCCer to improve my mule vac
i can create a new acc and teleport hack to my main
and use VMware to map shift with mule and kill with main
but i get ban message in 3mins and i get DC in 5mins
so i want a timed auto CCer that mule can CC between 2 channels and i CC and kill them
and i dont have to create new accs anymore because you get banned if you stay with vac but if you cc you wont get banned (but too risky to test with main)
so:
1) its must not be like smartz's, its timed
2) i want it for EMS but it will work for any MS if we make it (no need people counter or w/e)
3) i am glad to make it myself but i dont know where to start (which lang? like VB or C++?)
4) i am not a noob i made dll trainer with C++ but never used macro codes
5) i will be so happy if you help me
i posted this in maple story section too but seems like no1 replies
so simply i want a macro bot
who can helP?
_________________
|
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Sun Sep 21, 2008 10:09 am Post subject: |
|
|
Just as Lurc said, "You will fail if you learn a programming language solely to hack"
_________________
|
|
| Back to top |
|
 |
tdenisenko Grandmaster Cheater
Reputation: 0
Joined: 23 Oct 2007 Posts: 799 Location: Turkey
|
Posted: Sun Sep 21, 2008 10:11 am Post subject: |
|
|
| kitterz wrote: | | Just as Lurc said, "You will fail if you learn a programming language solely to hack" |
ok i fail
help now?
_________________
|
|
| Back to top |
|
 |
TraxMate Master Cheater
Reputation: 0
Joined: 01 Mar 2008 Posts: 363
|
Posted: Sun Sep 21, 2008 10:47 am Post subject: |
|
|
| Code: | #include <windows.h>
#include <tchar.h>
#include <iostream>
using namespace std;
HWND MapleWnd = FindWindow(_T("MapleStoryClass"), 0);
DWORD _PMA = (DWORD)GetProcAddress(LoadLibrary(_T("user32.dll")), "PostMessageA") + 5;
__declspec(naked) BOOL WINAPI _PostMessageA(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
__asm
{
mov edi, edi
push ebp
mov ebp, esp
jmp dword ptr ds:[_PMA]
}
}
int main()
{
SetConsoleTitle(_T("AutoCC for MapleStory"));
cout << "AutoCC for MapleStory by TraxMate" << endl;
for(;;)
{
if(FindWindow(_T("MapleStoryClass"), 0))
{
Sleep(10000);
_PostMessageA(MapleWnd, WM_KEYDOWN, 0x1B, (MapVirtualKey(0x1B, 0) << 16));
Sleep(10);
_PostMessageA(MapleWnd, WM_KEYDOWN, 0x0D, (MapVirtualKey(0x0D, 0) << 16));
Sleep(10);
_PostMessageA(MapleWnd, WM_KEYDOWN, 0x27, (MapVirtualKey(0x27, 0) << 16));
Sleep(10);
_PostMessageA(MapleWnd, WM_KEYDOWN, 0x0D, (MapVirtualKey(0x0D, 0) << 16));
cout << "AutoCCed to next channel" << endl;
}
else
{
cout << "MapleStory not found." << endl;
Sleep(10000);
}
}
return 0;
} | Made this in 5 min. This is my second thing i've done in c++ ^^. I only do hacking stuff . I'm just learning c++ to hack. Anyways this autocc after 10 seconds. You can cahnge the delay yourself. Sadly since I dont know how to make it cc to random channels like x traíner this only cc 1 channel to the right. But you can use this to learn :p.
I made this in MSVC++ But I think you can compile it in any compiler.
Last edited by TraxMate on Sun Sep 21, 2008 11:48 am; edited 1 time in total |
|
| Back to top |
|
 |
tdenisenko Grandmaster Cheater
Reputation: 0
Joined: 23 Oct 2007 Posts: 799 Location: Turkey
|
Posted: Sun Sep 21, 2008 10:56 am Post subject: |
|
|
tested and work so well
good job on making that in 5mins
i replied late sry it was 2x exp
i will edit it for 1 right 1 left but i will never delete AutoCCer by Traxmate
_________________
Last edited by tdenisenko on Sun Sep 21, 2008 1:11 pm; edited 1 time in total |
|
| Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
Posted: Sun Sep 21, 2008 11:00 am Post subject: |
|
|
| Code: | | _PostMessageA(MapleWnd, WM_KEYDOWN, 0x27, (MapVirtualKey(0x1B, 0) << 16)); |
Wrong.
| Code: | | if(FindWindow(_T("MapleStoryClass"), 0)) |
Why would you do that if you already initialize MapleWnd with FindWindow...
Btw, why would you only learn C++ for hacking purposes... that's fucking stupid.
_________________
|
|
| Back to top |
|
 |
nog_lorp Grandmaster Cheater
Reputation: 0
Joined: 26 Feb 2006 Posts: 743
|
Posted: Sun Sep 21, 2008 11:46 am Post subject: |
|
|
The second part, I'm guessing, is so it quits when MapleStory closes.
_________________
Mutilated lips give a kiss on the wrist of the worm-like tips of tentacles expanding in my mind
I'm fine accepting only fresh brine you can get another drop of this yeah you wish |
|
| Back to top |
|
 |
TraxMate Master Cheater
Reputation: 0
Joined: 01 Mar 2008 Posts: 363
|
Posted: Sun Sep 21, 2008 11:54 am Post subject: |
|
|
| lurc wrote: | Code:
if(FindWindow(_T("MapleStoryClass"), 0))
Why would you do that if you already initialize MapleWnd with FindWindow...
| I did that before I initialized MapleWnd and I didn't change it.
And why I'm only learning C++ for hacking is because I'm only intrested in hacking maple and nothing else.
|
|
| Back to top |
|
 |
tdenisenko Grandmaster Cheater
Reputation: 0
Joined: 23 Oct 2007 Posts: 799 Location: Turkey
|
Posted: Sun Sep 21, 2008 1:12 pm Post subject: |
|
|
btw my .exe doesnt run in VMware any solutions?
_________________
|
|
| Back to top |
|
 |
lurc Grandmaster Cheater Supreme
Reputation: 2
Joined: 13 Nov 2006 Posts: 1900
|
Posted: Sun Sep 21, 2008 1:14 pm Post subject: |
|
|
Install the redistributal libraries on the VMWare or build the project so it doesn't need dependencies.
_________________
|
|
| Back to top |
|
 |
tdenisenko Grandmaster Cheater
Reputation: 0
Joined: 23 Oct 2007 Posts: 799 Location: Turkey
|
Posted: Sun Sep 21, 2008 2:19 pm Post subject: |
|
|
| lurc wrote: | | Install the redistributal libraries on the VMWare or build the project so it doesn't need dependencies. |
i installed both 2005 and 2008 redistributable but it still doesnt work
installing VC++ on VMware now....
_________________
|
|
| Back to top |
|
 |
中国& Cheater
Reputation: 0
Joined: 21 Aug 2008 Posts: 34
|
Posted: Sun Sep 21, 2008 7:20 pm Post subject: lol |
|
|
please dont flame if this is a noob question
o.o
why did u move edi into edi?
|
|
| Back to top |
|
 |
kitterz Grandmaster Cheater Supreme
Reputation: 0
Joined: 24 Dec 2007 Posts: 1268
|
Posted: Sun Sep 21, 2008 7:42 pm Post subject: Re: lol |
|
|
| 中国& wrote: | please dont flame if this is a noob question
o.o
why did u move edi into edi?  |
Dunno. Plle like doing that for some reason. It is not really needed in this situation.
_________________
|
|
| Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sun Sep 21, 2008 9:58 pm Post subject: Re: lol |
|
|
| 中国& wrote: | please dont flame if this is a noob question
o.o
why did u move edi into edi?  |
it's a 2 byte nop.
|
|
| Back to top |
|
 |
Slugsnack Grandmaster Cheater Supreme
Reputation: 71
Joined: 24 Jan 2007 Posts: 1857
|
Posted: Mon Sep 22, 2008 3:39 am Post subject: |
|
|
| Google hotpatching. Although in trampoline functions, that instruction is completely unnecessary.
|
|
| Back to top |
|
 |
|