Page 6 of 10
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 05, 2010 11:52 pm
by Nerrazzuri
mapleplayer wrote:may i know how to readpointer? if can read char direction then auto move was useful~
You can Read character X and Y, i don't really know about the facing direction, I heard there was it.
Re: [Tut]How to make a dll trainer
Posted: Fri Jul 09, 2010 8:01 pm
by PIEzLOVERS
boredness should sticky this

Re: [Tut]How to make a dll trainer
Posted: Sat Jul 10, 2010 7:34 am
by Nerrazzuri
PIEzLOVERS wrote:boredness should sticky this

Yeah he should.
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 19, 2010 11:59 am
by Elite Crew
Hey, I have a problem after I made my first trainer by using your TUT.
Everything was find I mean when I build it say "succsed 1 - fail 0 - up-date 0"
But when I inject my .dll trainer into MapleStory.exe by using Winject injector. (even tried other injectors)
My trainer did not pop up. May I know why? I can upload the source and PM it to you if you want.
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 19, 2010 2:51 pm
by Nerrazzuri
Elite Crew wrote:Hey, I have a problem after I made my first trainer by using your TUT.
Everything was find I mean when I build it say "succsed 1 - fail 0 - up-date 0"
But when I inject my .dll trainer into MapleStory.exe by using Winject injector. (even tried other injectors)
My trainer did not pop up. May I know why? I can upload the source and PM it to you if you want.
Ok, let me see.
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 19, 2010 4:09 pm
by francesco149
Hey nerazzurri, i just finished making my GUI, but I just don't get what i am supposed to change here:
And lastly, Change the SuperTubi name to the hack name you've declared in the Trainer.h(must exactly the same) and you are done!
What name? The one in the checkbox? I only have (name) wich is supposed to be IDC_CHECK<n>
Btw, i made my trainer AoB based and i want it to make checkboxes grey (unclickable) if the AoB is not found, how do i do this? o_o'
Also, how do i pass to the trainer a value with a textbox? And what about radio buttons?
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 19, 2010 5:33 pm
by jeezor
francesco149 wrote:Hey nerazzurri, i just finished making my GUI, but I just don't get what i am supposed to change here:
And lastly, Change the SuperTubi name to the hack name you've declared in the Trainer.h(must exactly the same) and you are done!
What name? The one in the checkbox? I only have (name) wich is supposed to be IDC_CHECK<n>
change check<n> to your hacks name.
Re: [Tut]How to make a dll trainer
Posted: Mon Jul 19, 2010 6:57 pm
by Nerrazzuri
francesco149 wrote:Hey nerazzurri, i just finished making my GUI, but I just don't get what i am supposed to change here:
And lastly, Change the SuperTubi name to the hack name you've declared in the Trainer.h(must exactly the same) and you are done!
What name? The one in the checkbox? I only have (name) wich is supposed to be IDC_CHECK<n>
Btw, i made my trainer AoB based and i want it to make checkboxes grey (unclickable) if the AoB is not found, how do i do this? o_o'
Also, how do i pass to the trainer a value with a textbox? And what about radio buttons?
jeezor wrote:francesco149 wrote:Hey nerazzurri, i just finished making my GUI, but I just don't get what i am supposed to change here:
And lastly, Change the SuperTubi name to the hack name you've declared in the Trainer.h(must exactly the same) and you are done!
What name? The one in the checkbox? I only have (name) wich is supposed to be IDC_CHECK<n>
change check<n> to your hacks name.
Nope, Change the name of your control.
Code: Select all
case IDC_CHECK1:
checked = IsDlgButtonChecked(hwndDlg, IDC_CHECK1)
[b]SuperTubi[/b](checked);
break;
The one in between [ b ] and [ /b ].
Re: [Tut]How to make a dll trainer
Posted: Tue Jul 20, 2010 1:49 am
by Elite Crew
Here's my source, please see what's the problem.
http://www.mediafire.com/?e4l4d42afeqw206
Re: [Tut]How to make a dll trainer
Posted: Tue Jul 20, 2010 3:19 am
by francesco149
Oh, ok. What about radio buttons? How do i make it detect if a radio button is checked? Same way as checkboxes?