Volt Brothers for Android
+ Reply to Thread
Page 4 of 19 FirstFirst ... 2 3 4 5 6 14 ... LastLast
Results 46 to 60 of 279

Thread: Tutorials and Faqs brainstorm - submit information and opinions here

  1. #46
    fantasywave Guest
    Originally posted by angelfly
    I know exactly what ETT is but here is what you said "1) It saids to telnet Xbox --> PC with ETT", the guide does not say that.And where it said "type: value 6" it should be easy to assume you type "value 6".As for the telnet client I use the normal telnet that ships with windows.I really don't know what you find so confusing about the direction "load it into IDA Pro" and "I will be showing how to do the Continue trainer for TMNT" means exactly what it says and that is he will be showing how to make a continue trainer for tmnt.
    Well thnx for your guidance I finally understand some of the confusing points in the guide.

  2. #47
    dootdoo Guest
    if you have any questions about any specific part I will be happy to try and help you understand it, I did not write the guide to be used with ett, I have no idea how ett works..

    As for the value searching, I take a value that is on the screen, and then search for it, get that value to change in the game, then search for the new value.

    This is done so that you can narrow down the location of the number of continues.

    Ida pro is a piece of software used to disassemble things, it is listed as things you need in order to do the tutorial, you could use wdasm or something else if you are familiar with them, but I don't go into detail on how to use them.

  3. #48
    dootdoo Guest
    Also, where did you find a tiger woods tutorial? I'd like to read it

  4. #49
    fantasywave Guest
    Originally posted by dootdoo
    Also, where did you find a tiger woods tutorial? I'd like to read it
    This: http://forums.maxconsole.com/showth...s=&threadid=782

    I'll read through your tutorials again and learn from it but now I gotta fix my Telnet problem...It freezes on every game when I send the messge "value 6".

  5. #50
    Falcon3 Guest
    DootDoo is it necessary to use IDA pro when locking the values or can this be done another way? Since i can't find IDA pro atm,

    I hacked Dreamcast & PS2 saves before and those were easy.
    my old DC save site

    http://www.angelfire.com/games3/vmul...con/index.html

    This XBOX trainer stuff is new to me,i have sucessfully done the value searches ,with your tutorial {thanks}. But as far as locking that value since i don't have IDA pro is where i'm having trouble at.
    Any help would be appreciated.
    Wanting to join your XBOX trainer team once i get this all figured out.

    you can reach me on msn @
    falconsvmuworld@hotmail.com

    or aim @
    falconsvmuworld

    Thanks
    Falcon3

  6. #51
    dootdoo Guest
    you can use any disassembler, I just perfer ida pro since thats what I'm used to. Its probably overkill in some situations, and it is a bit slow in loading since it does so many things..

    The best alternative would be w32dasm (last I knew it was version 8.9 or something like that)

    Thats probably a lot easier to find since its very popular with people that patch windows programs, and it ends up on web sites quite often.

    Since there are so many disassemblers out there I didn't want to go thru all of them in the tutorials, but it should be pretty easy to figure out how to adapt the tutorial to use w32dasm's interface, since all we are really doing is finding out what is happening at that location, then changing it.

  7. #52
    Falcon3 Guest
    Ok Thanks for Your Help Dootdoo.

    1 question since i was able to find w32dasm ,which file am I loading into it?

    I noticed you put the ASM file in the tutorial on TMNT,would I create a ASM file with MXT Evox trainer?

    Sorry for all the noob questions,just trying to figure this out.

    Thanks again
    Falcon3

  8. #53
    dootdoo Guest
    you load the converted xbe into it (the one you made with cxbx).

    The asm file is purely to help people see exactly where I am going, and what I'm patching at that location.

  9. #54
    Falcon3 Guest
    Ok i got it thanks LOL i feel like a noob,I should have some working trainers soon.

    Thanks for your help again DootDoo.

  10. #55
    dootdoo Guest
    no problem, the learning curve on trainers is sharp at the very begining, then it gets a lot easier

    Getting the tools all working is the biggest hurdle to most I think.

  11. #56
    dootdoo Guest
    If anyone is/was curious on how to find the values for the TitleId and the TimeStamp the following code will do just that. If someone wants to write something like this in vb or vc++ or something I think it could be a helpful tool to points people to so they can check to see if the trainer they are trying to use is failing because of the title id, the timestamp, or because they misconfigured something.

    #include <stdio.h>

    main(int argc, char *argv[])
    {
    int offset;
    int temp;
    FILE *fp;

    if(argc!=2)
    {
    printf("Usage: %s <xbe>\n",argv[0]);
    exit(0);
    }

    if((fp=fopen(argv[1],"r+b"))==NULL)
    {
    printf("Error opening file <%s>\n",argv[1]);
    }

    fseek(fp,0x0114, SEEK_SET); /* Go to the offset for TimeStamp */
    fread(&temp,1,4,fp);
    printf("Timestamp: %4.4X\n",temp);
    fread(&offset,1,4,fp); /* Read start address of certificate */
    offset-=0x10000; /* adjust address for flatfile */
    offset+=8; /* add 8 to get to TitleId value */
    fseek(fp,offset, SEEK_SET); /* Go to the offset for TitleId */
    fread(&temp,1,4,fp);
    printf("Title Id : %4.4X\n",temp);
    exit(0);
    }

  12. #57
    Surface Guest

    Lockup

    Hmmmm... Seems like my xbox locks up everytime after i type value ##

    What could be causing this? I'm using EvoX M7, and EvolutionX V+3935... Xbox V1.1

    The game im trying to work on is Morrowind GotY Edition, however this happens to all games I try. Even TMNT.


    OR, if anyone wants to make a Maxed out Gold trainer for M-GotY thad be super awesome.

  13. #58
    dootdoo Guest
    Some things to check:

    if you have dhcp on, switch that to static ip instead.
    try turning IGR off or on..


  14. #59
    student Guest
    Thanks for the great tutorial, dootdoo!
    Following the tutorial, I could go all the way down to NOP
    and succeeded in making the number stay as I want.
    After that, I want to create ETM file, so I don't need to
    connect telnet everytime I want to use trainer.
    But I am lost. I tried EasyEvoxTrainerMaker, but no success.
    How can I apply the 'poke' command to the utility?
    Can someone guide me how to make ETM file?
    Any help would be appreciated~

  15. #60
    abramowicz101 Guest

    first tutorial

    where can i find the FIRST tutorial
    and what programs do i need to make trainers?can anyone pm me with the answer

+ Reply to Thread
Page 4 of 19 FirstFirst ... 2 3 4 5 6 14 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts