| View previous topic :: View next topic |
| Author |
Message |
Renkokuken GO Moderator
Reputation: 4
Joined: 22 Oct 2006 Posts: 3249
|
Posted: Mon Feb 11, 2008 11:18 am Post subject: [Release] ConsoleEasy | Opensource C bot | Class added! |
|
|
I've prepared a little example bot for those who are looking for how to code a bot in C/C++.
Easy customizable, and has prime examples of multi-threading.
I plan on commenting it heavily later on today, and perhaps making a class for easier usage.
As for a little explanation, the bot will stream it's dependencies at run-time, into a folder located at
All of which will be released and deleted at closing. I plan on further use of this dependency for trainer example in time to come, but for now it's just for exporting a few functions. The DLL located in the source is only for compilation, and doesn't need to be carried with the program.
The bot is in complete Unicode as well, as I don't see much of it around CEF.
Nevertheless, I hope you enjoy it. Feel free to use it's functions, modify, and enhance it as you will. Refresh the page if you don't see the attachment.
I fixed a minor error, thanks for the bug reporting.
___________________________________________________________
I've finished the CORE class, users can now easily create/terminate threads that are easily customizable with delays, keys, and more.
Source and example also added to attachments!
Last edited by Renkokuken on Wed Feb 13, 2008 12:22 pm; edited 3 times in total |
|
| Back to top |
|
 |
Uligor Grandmaster Cheater
Reputation: 0
Joined: 21 Jan 2006 Posts: 956
|
Posted: Mon Feb 11, 2008 11:35 am Post subject: |
|
|
I really really dislike your coding style but it's Wenwo so gud job. :3
_________________
|
|
| Back to top |
|
 |
Reak I post too much
Reputation: 0
Joined: 15 May 2007 Posts: 3496
|
Posted: Mon Feb 11, 2008 12:05 pm Post subject: |
|
|
hmm I don't know what their problems are. The code is well arranged in my opinion.
good job.
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Mon Feb 11, 2008 12:19 pm Post subject: |
|
|
lol Wenwo, btw that's noz's the leetness mission you thief !
Same method as i did in pascal, just in C++
|
|
| Back to top |
|
 |
Renkokuken GO Moderator
Reputation: 4
Joined: 22 Oct 2006 Posts: 3249
|
Posted: Mon Feb 11, 2008 1:16 pm Post subject: |
|
|
| Rot1 wrote: | lol Wenwo, btw that's noz's the leetness mission you thief !
Same method as i did in pascal, just in C++ | Not really, and except good.
|
|
| Back to top |
|
 |
Spawnfestis GO Moderator
Reputation: 0
Joined: 02 Nov 2007 Posts: 1746 Location: Pakistan
|
Posted: Mon Feb 11, 2008 1:17 pm Post subject: |
|
|
| Rot1 wrote: | lol Wenwo, btw that's noz's the leetness mission you thief !
Same method as i did in pascal, just in C++ |
lol scrotum, btw you never did anything, that's renko's leetness mission you twat !
Same method as you stole in pascal, just in C++
_________________
CLICK TO HAX MAPLESTORAY ^ !!!! |
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Mon Feb 11, 2008 1:32 pm Post subject: |
|
|
| Spawnfestis wrote: | | Rot1 wrote: | lol Wenwo, btw that's noz's the leetness mission you thief !
Same method as i did in pascal, just in C++ |
lol scrotum, btw you never did anything, that's renko's leetness mission you twat !
Same method as you stole in pascal, just in C++ |
i talked to renko about this, and it was my bad
|
|
| Back to top |
|
 |
Renkokuken GO Moderator
Reputation: 4
Joined: 22 Oct 2006 Posts: 3249
|
Posted: Mon Feb 11, 2008 1:38 pm Post subject: |
|
|
Everyone's entitled to their opinions!
I do admit my coding style is a bit hard to read, but I like it as such since I prefer compact code.
@rot1: Not a problem, apology accepted.
|
|
| Back to top |
|
 |
Noz3001 I'm a spammer
Reputation: 26
Joined: 29 May 2006 Posts: 6220 Location: /dev/null
|
Posted: Mon Feb 11, 2008 2:47 pm Post subject: |
|
|
| Hi Renko, whats up? ^^.
|
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
|
| Back to top |
|
 |
DebugMe Newbie cheater
Reputation: 0
Joined: 29 May 2007 Posts: 20
|
Posted: Mon Feb 11, 2008 7:01 pm Post subject: |
|
|
Nice one, actually helped me understand something. But I'm not sure if it's supposed to actually work on MapleStory, because when I tried, the keys weren't being send and the console was getting spammed with Target locked and something else =\
|
|
| Back to top |
|
 |
Flyte Peanuts!!!!
Reputation: 6
Joined: 19 Apr 2006 Posts: 1887 Location: Canada
|
Posted: Mon Feb 11, 2008 7:22 pm Post subject: |
|
|
Here is a better way to handle the hotkeys:
| Code: | if ( GetAsyncKeyState( VK_F9 ) & 0x81 ) {
bAutoLoot = !bAutoLoot;
wprintf( L"AutoLoot status: %s\n", bAutoLoot ? L"RESUMED" : L"SUSPENDED" );
}
if ( GetAsyncKeyState( VK_F10 ) & 0x81 ) {
bAutoJump = !bAutoJump;
wprintf( L"AutoJump status: %s\n", bAutoJump ? L"RESUMED" : L"SUSPENDED" );
} |
|
|
| Back to top |
|
 |
Renkokuken GO Moderator
Reputation: 4
Joined: 22 Oct 2006 Posts: 3249
|
Posted: Mon Feb 11, 2008 7:56 pm Post subject: |
|
|
| DebugMe wrote: | Nice one, actually helped me understand something. But I'm not sure if it's supposed to actually work on MapleStory, because when I tried, the keys weren't being send and the console was getting spammed with Target locked and something else =\ | You're right, I seem to have misused the macros in this one copy. I fixed it and it's working again. Attached to the main post is the updated source.
@Flyte: It's better, but WL4 calls warnings on it. I'll do so though. :>
@Wiccaan: Thanks for the warning-smashing. <3!
|
|
| Back to top |
|
 |
.Murder. Grandmaster Cheater
Reputation: 0
Joined: 28 Nov 2007 Posts: 723
|
Posted: Mon Feb 11, 2008 10:10 pm Post subject: |
|
|
Oh God. Sexy
_________________
|
|
| Back to top |
|
 |
DeletedUser14087 I post too much
Reputation: 2
Joined: 21 Jun 2006 Posts: 3069
|
Posted: Tue Feb 12, 2008 4:39 am Post subject: |
|
|
| Wiccaan wrote: | Lol @ Kasper trying to call people out on stealing code.
And Renk no love for me? I fixed the errors ! >.> |
He didn't steal anything, it was my bad.
but he's doing noz's the leetness mission !
|
|
| Back to top |
|
 |
|