Go Back   FileForums > Games > General Gaming

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 22-02-2006, 10:03
/elektro/index.php /elektro/index.php is offline
Junior Member
 
Join Date: Feb 2006
Location: french
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
/elektro/index.php is on a distinguished road
is there any chance to get the trainer for version Dawn of War 1.41 Winter Assault 1.0?
i tried all of the releases and none does work. :/
Reply With Quote
Sponsored Links
  #2  
Old 24-02-2006, 13:21
supercharge supercharge is offline
Junior Member
 
Join Date: Feb 2006
Location: USA
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
supercharge is on a distinguished road
What's the difference between version 4 and 3, I wonder because version 3 worked perfectly for my game (game version is as same as authors) but none of version 4 worked. The only thing from version 3 that needs to be fixed is to not give the opponent side the same abilities. That's it.

Would somebody not mind showing how to start writing these kinds of game trainers? Maybe I can contribute or help a bit 'cause myself is also a computer programmer but have just never done a trainer before. What tools or software do I need? I'd love to show my the crash error but I did not receive any crash error using version 4. It just did not respond to any keypress of F. It's getting more frustrating...

Email: holysupercharge********com

Thanks
Reply With Quote
  #3  
Old 24-02-2006, 15:40
shortferret shortferret is offline
Member
 
Join Date: Jan 2006
Location: NA
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
shortferret is on a distinguished road
Alright guys, I'm really running out of ideas this time... so I am going to try to change the trigger keys from F keys to Shift keys
Shift+X to replace F1 and so on....

http://www.filelodge.com/files/hdd7/...ner_Plus4f.rar

For the guys with non-responding keys... did you guys receive a prompt about some hook dll file? happened only once on my end after which the hotkeys refused to work, looked random. That file is required for the trainer to work and might come up as a false positive in some antivirus as mentioned by DABHand earlier in this thread. So if the antivirus disabled this file, the trainer wont work.
Reply With Quote
  #4  
Old 24-02-2006, 15:48
shortferret shortferret is offline
Member
 
Join Date: Jan 2006
Location: NA
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
shortferret is on a distinguished road
Quote:
Originally Posted by supercharge
What's the difference between version 4 and 3, I wonder because version 3 worked perfectly for my game (game version is as same as authors) but none of version 4 worked. The only thing from version 3 that needs to be fixed is to not give the opponent side the same abilities. That's it.

Would somebody not mind showing how to start writing these kinds of game trainers? Maybe I can contribute or help a bit 'cause myself is also a computer programmer but have just never done a trainer before. What tools or software do I need? I'd love to show my the crash error but I did not receive any crash error using version 4. It just did not respond to any keypress of F. It's getting more frustrating...

Email: holysupercharge********com

Thanks
Check your email
Reply With Quote
  #5  
Old 24-02-2006, 15:47
shortferret shortferret is offline
Member
 
Join Date: Jan 2006
Location: NA
Posts: 37
Thanks: 0
Thanked 0 Times in 0 Posts
shortferret is on a distinguished road
Quote:
Originally Posted by /elektro/index.php
is there any chance to get the trainer for version Dawn of War 1.41 Winter Assault 1.0?
i tried all of the releases and none does work. :/
not for now.. sorry man... you can try making one?
Reply With Quote
  #6  
Old 25-02-2006, 03:33
/elektro/index.php /elektro/index.php is offline
Junior Member
 
Join Date: Feb 2006
Location: french
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
/elektro/index.php is on a distinguished road
Quote:
Originally Posted by shortferret
not for now.. sorry man... you can try making one?
damn!
if i had the slightest idea how ^^
Reply With Quote
  #7  
Old 25-02-2006, 05:11
DABhand DABhand is offline
Banned
 
Join Date: Nov 2004
Location: Near my PC
Posts: 5,406
Thanks: 0
Thanked 3 Times in 3 Posts
DABhand is on a distinguished road
There is a coders section on the forum, check all posts from the beginning
Reply With Quote
  #8  
Old 09-03-2006, 11:55
supercharge supercharge is offline
Junior Member
 
Join Date: Feb 2006
Location: USA
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
supercharge is on a distinguished road
Finding the right Address

Hi all,

I was reading this tutorial and had no idea how he knows it's the right address. Can some experts here point it out, please?
How about some tips on finding the locations for users only, not computer?

Here is the part:
Code:
...
ADDRESSES....  OPCODES............ ASSEMBLY LANGUAGE.........

017F:60570C50  55                  PUSH    EBP
017F:60570C51  8BEC                MOV     EBP,ESP
017F:60570C53  A1E8625E60          MOV     EAX,[605E62E8]
017F:60570C58  8B08                MOV     ECX,[EAX]
017F:60570C5A  FF15E4625E60        CALL    [605E62E4]
017F:60570C60  8B4854              MOV     ECX,[EAX+54]
017F:60570C63  85C9                TEST    ECX,ECX     
017F:60570C65  7508                JNZ     60570C6F   HOW DOES HE KNOW THIS IS THE ADDRESS OF BULLETS?
017F:60570C67  8B4508              MOV     EAX,[EBP+08]   <--- Address of BULLETS
017F:60570C6A  8B4D0C              MOV     ECX,[EBP+0C]   <--- Amount of BULLETS to
                                                               decrease by.(ECX=1)
017F:60570C6D  2908                SUB     [EAX],ECX      <--- subtract ECX(1)from BULLETS
017F:60570C6F  5D                  POP     EBP            <--- WE LAND HERE WHEN SI POPS
017F:60570C70  C3                  RET
Thanks all.

Last edited by supercharge; 09-03-2006 at 11:58.
Reply With Quote
  #9  
Old 16-05-2006, 10:06
DABhand DABhand is offline
Banned
 
Join Date: Nov 2004
Location: Near my PC
Posts: 5,406
Thanks: 0
Thanked 3 Times in 3 Posts
DABhand is on a distinguished road
Quote:
Originally Posted by supercharge
Hi all,

I was reading this tutorial and had no idea how he knows it's the right address. Can some experts here point it out, please?
How about some tips on finding the locations for users only, not computer?

Here is the part:
Code:
...
ADDRESSES....  OPCODES............ ASSEMBLY LANGUAGE.........

017F:60570C50  55                  PUSH    EBP
017F:60570C51  8BEC                MOV     EBP,ESP
017F:60570C53  A1E8625E60          MOV     EAX,[605E62E8]
017F:60570C58  8B08                MOV     ECX,[EAX]
017F:60570C5A  FF15E4625E60        CALL    [605E62E4]
017F:60570C60  8B4854              MOV     ECX,[EAX+54]
017F:60570C63  85C9                TEST    ECX,ECX     
017F:60570C65  7508                JNZ     60570C6F   HOW DOES HE KNOW THIS IS THE ADDRESS OF BULLETS?
017F:60570C67  8B4508              MOV     EAX,[EBP+08]   <--- Address of BULLETS
017F:60570C6A  8B4D0C              MOV     ECX,[EBP+0C]   <--- Amount of BULLETS to
                                                               decrease by.(ECX=1)
017F:60570C6D  2908                SUB     [EAX],ECX      <--- subtract ECX(1)from BULLETS
017F:60570C6F  5D                  POP     EBP            <--- WE LAND HERE WHEN SI POPS
017F:60570C70  C3                  RET
Thanks all.

Sheep is kinda psychic in a way when doing trainers, he just knows sometimes :P


But trial and error is helpful too, find an address? try changing the value contained in it? Did it work? If so then thats your address.


What he did was search for the address for bullets and set a breakpoint in Softice which popped in that coding. From there he knew what was going on.


You can use other debuggers also CheatEngine has a handy debugging feature as does Tsearch.
Reply With Quote
  #10  
Old 16-05-2006, 21:58
viruz777 viruz777 is offline
Junior Member
 
Join Date: May 2006
Location: Malaysia
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
viruz777 is on a distinguished road
omgosh omgosh thanks so much ferret! u pwn jooz! keep up the good work! ur a trainer god mannnn....! but i'm having a minor confusion here.....whenever i start to build a bonesinger and it instant builds...i check to click it a few more times and endless bonesingers come out! isn't there a limit of 4 only?
Reply With Quote
  #11  
Old 04-07-2006, 08:46
Tmoore30 Tmoore30 is offline
Junior Member
 
Join Date: Jul 2006
Location: earth
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Tmoore30 is on a distinguished road
Is there one for 1.50

Did he do a update for 1.50 patch?
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
is there any Trainer or Hack for Warhammer 40k: Winter Assault??! kamalhisham General Gaming 5 11-01-2006 14:10
Warhammer 4000k Winter Assault BeatPirate PC Games 14 07-01-2006 22:03
Trainer for Winter Assault jacksonhuang General Gaming 1 27-09-2005 20:27



All times are GMT -7. The time now is 19:56.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com