Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


[MapleStory] Help me on programming...

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
tdenisenko
Grandmaster Cheater
Reputation: 0

Joined: 23 Oct 2007
Posts: 799
Location: Turkey

PostPosted: Sun Sep 21, 2008 9:50 am    Post subject: [MapleStory] Help me on programming... Reply with quote

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?

_________________
I am learning C++ and ASM and making trainers!
My Last Chaos Trainer!
LC Trainer by tdenisenko
Back to top
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Sun Sep 21, 2008 10:09 am    Post subject: Reply with quote

Just as Lurc said, "You will fail if you learn a programming language solely to hack"
_________________
Back to top
View user's profile Send private message Send e-mail
tdenisenko
Grandmaster Cheater
Reputation: 0

Joined: 23 Oct 2007
Posts: 799
Location: Turkey

PostPosted: Sun Sep 21, 2008 10:11 am    Post subject: Reply with quote

kitterz wrote:
Just as Lurc said, "You will fail if you learn a programming language solely to hack"


ok i fail
help now?

_________________
I am learning C++ and ASM and making trainers!
My Last Chaos Trainer!
LC Trainer by tdenisenko
Back to top
View user's profile Send private message
TraxMate
Master Cheater
Reputation: 0

Joined: 01 Mar 2008
Posts: 363

PostPosted: Sun Sep 21, 2008 10:47 am    Post subject: Reply with quote

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 Surprised. 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
View user's profile Send private message
tdenisenko
Grandmaster Cheater
Reputation: 0

Joined: 23 Oct 2007
Posts: 799
Location: Turkey

PostPosted: Sun Sep 21, 2008 10:56 am    Post subject: Reply with quote

tested and work so well
good job on making that in 5mins
i replied late sry it was 2x exp Very Happy

i will edit it for 1 right 1 left but i will never delete AutoCCer by Traxmate Very Happy

_________________
I am learning C++ and ASM and making trainers!
My Last Chaos Trainer!
LC Trainer by tdenisenko


Last edited by tdenisenko on Sun Sep 21, 2008 1:11 pm; edited 1 time in total
Back to top
View user's profile Send private message
lurc
Grandmaster Cheater Supreme
Reputation: 2

Joined: 13 Nov 2006
Posts: 1900

PostPosted: Sun Sep 21, 2008 11:00 am    Post subject: Reply with quote

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
View user's profile Send private message
nog_lorp
Grandmaster Cheater
Reputation: 0

Joined: 26 Feb 2006
Posts: 743

PostPosted: Sun Sep 21, 2008 11:46 am    Post subject: Reply with quote

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
View user's profile Send private message
TraxMate
Master Cheater
Reputation: 0

Joined: 01 Mar 2008
Posts: 363

PostPosted: Sun Sep 21, 2008 11:54 am    Post subject: Reply with quote

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
View user's profile Send private message
tdenisenko
Grandmaster Cheater
Reputation: 0

Joined: 23 Oct 2007
Posts: 799
Location: Turkey

PostPosted: Sun Sep 21, 2008 1:12 pm    Post subject: Reply with quote

btw my .exe doesnt run in VMware any solutions?
_________________
I am learning C++ and ASM and making trainers!
My Last Chaos Trainer!
LC Trainer by tdenisenko
Back to top
View user's profile Send private message
lurc
Grandmaster Cheater Supreme
Reputation: 2

Joined: 13 Nov 2006
Posts: 1900

PostPosted: Sun Sep 21, 2008 1:14 pm    Post subject: Reply with quote

Install the redistributal libraries on the VMWare or build the project so it doesn't need dependencies.
_________________
Back to top
View user's profile Send private message
tdenisenko
Grandmaster Cheater
Reputation: 0

Joined: 23 Oct 2007
Posts: 799
Location: Turkey

PostPosted: Sun Sep 21, 2008 2:19 pm    Post subject: Reply with quote

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....

_________________
I am learning C++ and ASM and making trainers!
My Last Chaos Trainer!
LC Trainer by tdenisenko
Back to top
View user's profile Send private message
&#20013;&#22269;&
Cheater
Reputation: 0

Joined: 21 Aug 2008
Posts: 34

PostPosted: Sun Sep 21, 2008 7:20 pm    Post subject: lol Reply with quote

please dont flame if this is a noob question
o.o
why did u move edi into edi? Shocked
Back to top
View user's profile Send private message
kitterz
Grandmaster Cheater Supreme
Reputation: 0

Joined: 24 Dec 2007
Posts: 1268

PostPosted: Sun Sep 21, 2008 7:42 pm    Post subject: Re: lol Reply with quote

中国& wrote:
please dont flame if this is a noob question
o.o
why did u move edi into edi? Shocked


Dunno. Plle like doing that for some reason. It is not really needed in this situation.

_________________
Back to top
View user's profile Send private message Send e-mail
hcavolsdsadgadsg
I'm a spammer
Reputation: 26

Joined: 11 Jun 2007
Posts: 5801

PostPosted: Sun Sep 21, 2008 9:58 pm    Post subject: Re: lol Reply with quote

中国& wrote:
please dont flame if this is a noob question
o.o
why did u move edi into edi? Shocked


it's a 2 byte nop.
Back to top
View user's profile Send private message
Slugsnack
Grandmaster Cheater Supreme
Reputation: 71

Joined: 24 Jan 2007
Posts: 1857

PostPosted: Mon Sep 22, 2008 3:39 am    Post subject: Reply with quote

Google hotpatching. Although in trampoline functions, that instruction is completely unnecessary.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites