TKC-Community

Hacking and Art => Mount and Blade => Topic started by: LordRegister on April 24, 2014, 04:06:29 am

Title: Where should I start?
Post by: LordRegister on April 24, 2014, 04:06:29 am
As someone with a lot of free time and a willingness to learn, where could I begin learning to create my own hacks for Warband? I have only a little experience coding, so I look forward to any help you guys can supply me!  :icon_devil
Title: Re: Where should I start?
Post by: Vreeland on April 24, 2014, 04:08:14 am
There's tutorials around the forum. Medic released a 'wallhack creator', but it doesn't have a tutorial, so it's pretty hard to figure out without any experience in this sort of work. Try sifting around, you can find some introductions, might take a while to piece it all together.
Title: Re: Where should I start?
Post by: LordRegister on April 24, 2014, 04:13:03 am
Hmm it seems like Medic removed all of his hacks. I guess because people kept pestering him about them  :icon_sad2
Title: Re: Where should I start?
Post by: zaab on April 24, 2014, 04:21:32 am
Vreeland, I wouldn't bother with that. There isn't much tutorial info on this site honestly. There's a few good threads with code which you can test, but that's it. For M&B that is.

I would start with Cheat Engine, it'll take you a few hours to learn most of everything, then you can easily create an autoblocker.. There are a lot of videos on youtube for this.

Afterwards, autoit or c++ for coding. You can create the autoblocker in autoit so it'll have fluid blocking, plus you can add an autofeint feature. Or you can start learning c++ so you can do a multitude of hacks. Wallhack/ESP/Chams are super easy to do and learning enough C++ for this might take a few days or so.

Not dissing TKC at all, but you'll learn far more efficiently on a few other sites or with youtube vids. There simply isn't enough info here for CE or C++.
Title: Re: Where should I start?
Post by: LordRegister on April 24, 2014, 04:32:12 am
Thanks zaab, that definitely gives me a good starting block. Really appreciate it  :icon_magician
Title: Re: Where should I start?
Post by: MrMedic on April 24, 2014, 06:40:15 pm
As someone with a lot of free time and a willingness to learn, where could I begin learning to create my own hacks for Warband? I have only a little experience coding, so I look forward to any help you guys can supply me!  :icon_devil

If i recall correctly there may be some tutorials on basic game hacking around these forums written by i believe symantic if not there will be plenty of other tutorials written around the internet , i remember extalia was a good place a long time ago , not sure if it is still around or not , anyway good luck and happy 'hacking'  :smile
ps learning how to use cheat engine would be a good start , as it can find and build your 'cheat' for you then compile it into an exe for you to distribute as you see fit.

try here also http://tkc-community.net/forum/index.php?board=15.0

 good luck :smile.
Title: Re: Where should I start?
Post by: MrMedic on April 24, 2014, 06:59:03 pm
There isn't much tutorial info on this site honestly.

that is very true and can be quite easily changed by for instance .. you making a tutorial for this guy and others to follow.  


maybe instruct them on how you achieved

this Wallhack/ESP/Chams

:smile
Title: Re: Where should I start?
Post by: zaab on April 24, 2014, 08:43:54 pm
There isn't much tutorial info on this site honestly.

that is very true and can be quite easily changed by for instance .. you making a tutorial for this guy and others to follow.  


maybe instruct them on how you achieved

this Wallhack/ESP/Chams

:smile

That would be extremely time consuming and I barely have time as it stands, but it would be useful for members to start cross posting tutorials or writing their own. And I couldn't find anything by you which is a shame since you seem very knowledgeable on this.

I personally used this guys videos - https://www.youtube.com/user/L4DL4D2EUROPE (explains c#, c++, CE, and outlines how to create most hacks, so with a bit of coding knowledge anyone can do it)

Plus this.

http://thenewboston.org/tutorials.php
http://xoax.net/cpp/crs/console/index.php
http://www.codecademy.com/
http://www.cplusplus.com/doc/tutorial/
http://www.cprogramming.com/tutorial.html
http://www.learncpp.com/
http://www.codeproject.com/Forums/1647/C-Cplusplus-MFC.aspx

I can delete it if we shouldn't share sites.
Title: Re: Where should I start?
Post by: MrMedic on April 24, 2014, 10:01:31 pm
make a new thread with it.

btw here seeing as you botherd i will bother.

have fun  :smile

Code: [Select]
__declspec(naked) void AutoChamber()
{
__asm
{

       // seeing as we are here he is in a attack and swinging
      pushad
            mov edx,[esp+10] // direction of the enemy swing.
            mov dword ptr AttackDirection,edx // direction my guy will chamber
      popad

            mov edx,[esp+0x10] // lets restore the old code and go back in to this game
            jmp AutoChamber_Ret // back to warband 1.158 meanwhile that 'other' routine is chambering in his swing direction

}
}

// edited found a faster version
Title: Re: Where should I start?
Post by: M. O. on April 24, 2014, 10:30:30 pm
Programming is a bit like mathematics or physics, you can't simply read a book to learn it. You literally have to do it with pencil and paper. I know people who tried to memorize concepts like temporary variables for example, but who didn't understand the natural thought behind them because they never experienced the need, because they never got down to hands on experience, just theory.

Learning C++ and so on, from scratch, is out of scope for this website. However, we have a section for specific questions.

One of the most useful things when it comes to learning game hacking (not programming) is the game hacking archive which is available in the downloads section.



Btw. good style with the Koopa-avatar.

Title: Re: Where should I start?
Post by: Geriop on April 25, 2014, 01:24:25 am
thanks for the links. begin to study