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 


[Vb Team] Maplestory bot
Goto page 1, 2  Next
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
blackdog
Expert Cheater
Reputation: 0

Joined: 02 Aug 2006
Posts: 101

PostPosted: Tue Sep 23, 2008 1:13 pm    Post subject: [Vb Team] Maplestory bot Reply with quote

I was wondering if anyone was interested in make a bot for maplestory. I don't really play MS anymore I just want to program for fun. I was going to try and make what I call a "legit" bot. I was hoping the bot would find the closest monster x/y and go to it and kill it. Once killed finds the next closest monster. I know this is going to be a lot of work and the only reason I say VB is that I only know VB. If you are interested leave it here and add me to AIM, Xfire, or MSN. If you add me tell me you are from Cef.

Aim - Ledhead488
Xfire - Ledhead488
Msn - [email protected]
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Tue Sep 23, 2008 1:16 pm    Post subject: Reply with quote

You should really learn C++. Its much easier to code hacks/bots in.
Back to top
View user's profile Send private message
Heartless
I post too much
Reputation: 0

Joined: 03 Dec 2006
Posts: 2436

PostPosted: Tue Sep 23, 2008 1:25 pm    Post subject: Reply with quote

You mean like the unmentionable bot in the MapleStory section?

Like blackdog said, it is much eaiser in C++, unless you plan to make a GUI, then that is where it gets confusing.

_________________
What dosen't kill you, usually does the second time.
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Tue Sep 23, 2008 1:38 pm    Post subject: Reply with quote

Consoles are easy though. See the following example.

Code:
#include <windows.h>
#include <iostream.h>

using namespace std;

int main()
{
    SetConsoleTitle("GMS Botter");
    cout << "[----------------------------]" << endl;
    cout << " GMS Botter                   " << endl;
    cout << "[----------------------------]" << endl;
    cout << " Hotkeys:                     " << endl;
    cout << " F1 = ??? Botting                " << endl;
    cout << " F2 = Exit                    " << endl;
    cout << "[----------------------------]" << endl;
    BOOL Exit = false;
    while (Exit = false)
    {
        if(GetAsyncKeyState(VK_F1)) // If F1 is pressed ...
        {
            // ASM Coding Goes Here
            cout << " [Enabled] ??? Botting        " << endl;
        }
        else if(GetAsyncKeyState(VK_F2)) // If F2 is pressed ...
        {
            Exit = true;
        }
        Sleep(50);
    }
}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD call, LPVOID lpReserved)
{
    if(call == DLL_PROCESS_ATTACH) {
        DisableThreadLibraryCalls(hModule);
      CreateThread(0, 0, (LPTHREAD_START_ROUTINE)Main, hModule, 0, 0);
    } else if (call == DLL_PROCESS_DETACH) {
       
    }
    return TRUE;
}


Last edited by Innovation on Thu Apr 19, 2012 5:54 pm; edited 1 time in total
Back to top
View user's profile Send private message
&Vage
Grandmaster Cheater Supreme
Reputation: 0

Joined: 25 Jul 2008
Posts: 1053

PostPosted: Tue Sep 23, 2008 2:22 pm    Post subject: Reply with quote

Keyboard hooking is better.
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Tue Sep 23, 2008 2:48 pm    Post subject: Reply with quote

You mean by using the trampoline hooks?

Last edited by Innovation on Thu Apr 19, 2012 5:51 pm; edited 1 time in total
Back to top
View user's profile Send private message
Fredd
Expert Cheater
Reputation: 0

Joined: 18 Mar 2008
Posts: 240
Location: Somewhere past the rainbow, past the gold.....

PostPosted: Tue Sep 23, 2008 3:24 pm    Post subject: Reply with quote

The idea you just described is basically a cam vac without the you flying part.
_________________
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Tue Sep 23, 2008 3:30 pm    Post subject: Reply with quote

He meant a bot that checks for the closest monster and goes to attack it without editing process memory.

Last edited by Innovation on Thu Apr 19, 2012 5:54 pm; edited 1 time in total
Back to top
View user's profile Send private message
Heartless
I post too much
Reputation: 0

Joined: 03 Dec 2006
Posts: 2436

PostPosted: Tue Sep 23, 2008 3:36 pm    Post subject: Reply with quote

He still need to ReadProcessMemory to find the cloest monster's X and Y.
_________________
What dosen't kill you, usually does the second time.
Back to top
View user's profile Send private message
Innovation
Grandmaster Cheater
Reputation: 12

Joined: 14 Aug 2008
Posts: 617

PostPosted: Tue Sep 23, 2008 3:37 pm    Post subject: Reply with quote

I said editing, didn't I?

Last edited by Innovation on Thu Apr 19, 2012 5:55 pm; edited 1 time in total
Back to top
View user's profile Send private message
Heartless
I post too much
Reputation: 0

Joined: 03 Dec 2006
Posts: 2436

PostPosted: Tue Sep 23, 2008 3:39 pm    Post subject: Reply with quote

You did, but I consider ReadProcessMemory and WriteProcessMemory to be in the same family, and decide to bring it up.
_________________
What dosen't kill you, usually does the second time.
Back to top
View user's profile Send private message
&Vage
Grandmaster Cheater Supreme
Reputation: 0

Joined: 25 Jul 2008
Posts: 1053

PostPosted: Tue Sep 23, 2008 4:26 pm    Post subject: Reply with quote

Direct memory reading/writing is faster and isn't hooked.
Back to top
View user's profile Send private message
Noz3001
I'm a spammer
Reputation: 26

Joined: 29 May 2006
Posts: 6220
Location: /dev/null

PostPosted: Tue Sep 23, 2008 4:33 pm    Post subject: Reply with quote

_void_ wrote:
Keyboard hooking is better.


You'd rather install a keyboard hook than call GetAsyncKeyState twice?
Back to top
View user's profile Send private message MSN Messenger
dnsi0
I post too much
Reputation: 0

Joined: 04 Jan 2007
Posts: 2674

PostPosted: Tue Sep 23, 2008 4:43 pm    Post subject: Reply with quote

Good luck bypassing the rpm hooks... Just use the direct memory editing which is creating a pointer to an address and writing strait to it (Using a dll)
Back to top
View user's profile Send private message
blackdog
Expert Cheater
Reputation: 0

Joined: 02 Aug 2006
Posts: 101

PostPosted: Tue Sep 23, 2008 8:14 pm    Post subject: Reply with quote

Well it's not really like "typical" hacking, it would look more like someone is legit rather then sucking all the monsters to a certain spot. Yes I know C++ is better for coding but as of right now I don't know if I want to learn. No one interested?
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
Goto page 1, 2  Next
Page 1 of 2

 
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