Go Back   FileForums > Games > Game Trainers

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 08-04-2009, 14:31
h4x0r #'s Avatar
h4x0r # h4x0r # is offline
Registered User
 
Join Date: Apr 2009
Location: Spain
Posts: 200
Thanks: 0
Thanked 5 Times in 2 Posts
h4x0r # is on a distinguished road
Arrow Flock [Demo STEAM] +4 Trainer



ONLY FOR ORIGINAL DEMO STEAM

INSTRUCTIONS:

1. Run the trainer and after the game or vice versa.
2. Once in game press the keys that are displayed on the trainer for unlimited resources.

Cheers and enjoy!

DOWNLOAD IN GCW
__________________
IN NEW PROJECTS

Last edited by h4x0r #; 09-04-2009 at 11:13.
Sponsored Links
  #2  
Old 08-04-2009, 23:02
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
hmmmm...

Unlimited turbo = unlimited ufo speed?
Freeze Bonus = Pause Bonus Timer?
Max Puntuation = Add 1000 score?

Hmmm now to check out the coding, between yours and CH's.
  #3  
Old 09-04-2009, 00:36
h4x0r #'s Avatar
h4x0r # h4x0r # is offline
Registered User
 
Join Date: Apr 2009
Location: Spain
Posts: 200
Thanks: 0
Thanked 5 Times in 2 Posts
h4x0r # is on a distinguished road
Quote:
Originally Posted by DABhand View Post
hmmmm...

Unlimited turbo = unlimited ufo speed?
Freeze Bonus = Pause Bonus Timer?
Max Puntuation = Add 1000 score?

Hmmm now to check out the coding, between yours and CH's.
no man,I repeat for the last time that I have nothing to do with these people, take it or leave it.

SOURCE:

Unlimited turbo

Code:
alloc(newmem,xxx) //2kb es suficiente
label(returnhere)
label(exit)

Flock.exe+50e5b:
jmp newmem
nop
returnhere:

newmem:
mov dword ptr [ebp+000027c4],3f800000
fld dword ptr [ebp+000027c4]

exit:
jmp returnhere

dealloc(newmem)
Flock.exe+50e5b:
fld dword ptr [ebp+000027c4]
Freeze Bonus

Code:
alloc(newmem,xxx) //2kb es suficiente
label(returnhere)
label(exit)

Flock.exe+2c000:
jmp newmem
nop
returnhere:

newmem:
mov dword ptr [ecx+00000928],4479c000
fld dword ptr [ecx+00000928]

exit:
jmp returnhere

dealloc(newmem)
Flock.exe+2c000:
fld dword ptr [ecx+00000928]
Max Puntuation = 999999999

Code:
alloc(newmem,xxx) //2kb es suficiente
label(returnhere)
label(exit)

Flock.exe+2ef6e:
jmp newmem
nop
returnhere:

newmem:
mov [esi+0000061c],3b9ac9ff
mov ecx,[esi+0000061c]

exit:
jmp returnhere

dealloc(newmem)
Flock.exe+2ef6e:
mov ecx,[esi+0000061c]




am until the eggs that I compare with these people, that is the last time I compared with those people, if you do not want to download not tell no worse, we all have right to do such things.
is the first and only code that I publish, I will not say again that I have nothing to do with these people if we start seeing less reputation to people who do not deserve.

i say demo, and the code is the same for all.

grettings
__________________
IN NEW PROJECTS

Last edited by h4x0r #; 09-04-2009 at 00:55.
  #4  
Old 09-04-2009, 01:45
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
Dont get so defensive, it was weird you had 4 options and so did they.

Just so you know.

mov [esi+0000061c],3b9ac9ff
mov ecx,[esi+0000061c]

Could easily be condensed to

mov ecx,3b9ac9ff
  #5  
Old 09-04-2009, 01:49
h4x0r #'s Avatar
h4x0r # h4x0r # is offline
Registered User
 
Join Date: Apr 2009
Location: Spain
Posts: 200
Thanks: 0
Thanked 5 Times in 2 Posts
h4x0r # is on a distinguished road
Quote:
Originally Posted by DABhand View Post
Dont get so defensive, it was weird you had 4 options and so did they.

Just so you know.

mov [esi+0000061c],3b9ac9ff
mov ecx,[esi+0000061c]

Could easily be condensed to

mov ecx,3b9ac9ff
is right thanks
__________________
IN NEW PROJECTS
  #6  
Old 09-04-2009, 02:22
[Psych] [Psych] is offline
Banned
 
Join Date: Nov 2008
Location: In a heap :-)
Posts: 201
Thanks: 0
Thanked 0 Times in 0 Posts
[Psych] is on a distinguished road
Sometimes it is nice to stick the value directly into the register used in the routine like DAB said, although other times it is also good to put it into the pointer (the memory address). Depends what options you are doing.

Because that seems to be the write pointer that deducts/adds to your cash when you spend/sell something (not sure how this game works), and if you wrote into the ecx register, you would only see the result in game the second time round, because that amount hasn't been written in to that memory address. The routines that deal with reading from that address to print on screen won't pick it up straight away. You'll still be able to buy sell something, but until you do that the second time you won't see a result.

^ Nothing like talking sh!t heh, lol :P You know what I mean... I messed with ways of condensing code way back when I did some Call of Duty trainers... all good fun...
  #7  
Old 09-04-2009, 10:00
Caliber Caliber is offline
Banned
 
Join Date: Feb 2007
Location: USA
Posts: 134
Thanks: 0
Thanked 1 Time in 1 Post
Caliber is on a distinguished road
for completeness sake:

my demo locations are at:

QUOTA +2828
=====


0045D3C0 0388 28280000 ADD ECX,DWORD PTR DS:[EAX+2828]

QUOTA +2828
=====


0045D3C0 0388 28280000 ADD ECX,DWORD PTR DS:[EAX+2828]


UFO SPEED +27c4 (float)
=========

00450E70 D99D C4270000 FSTP DWORD PTR SS:[EBP+27C4]


SCORE +61c
=====

0042EF6E 8B8E 1C060000 MOV ECX,DWORD PTR DS:[ESI+61C]


BONUS TIMER +928 (float)
===========


0045CCA9 D998 28090000 FSTP DWORD PTR DS:[EAX+928]

AGAIN: once you have attached ollydbg, then log where my trainer attacks the game it's PIE to take this information and create your own trainer...

for the timer you can just convert to FSTP ST

or write the value (mov [esi+0000061c],3b9ac9ff) high

or you can avoid the function altogether.... depends on HOW you want to do it so as to not be noticed...

NOW given all of this, we didn't release our DEMO trainer.... so it's hard to say Hax0r copied us or not. even if he did, how you going to prove it when there's so many ways to TAKE the info and then use it to make your own (slightly different approach) trainer with same options.

what we don't appreciate is when they put out the SAME TRAINER OPTIONS, less than 24 hours after we do with SAME NAMES, in SAME ORDER, with copies of OUR IMAGES in the SAME size (249X339 LOL) taken from the same CODE AREAS with similar or SAME SOLUTIONS.

Tippex been asking for proof of this, well we sent all this to empire quite a while back. i don't have it handy but we also sent a link to cheatengine forums where kelsat was admitting trainer ripping. we DONT HAVE TIME TO GO OVER ALL THIS AGAIN.

there's no way to definitively prove each trainer and our point is that there's enough dots and info to connect these people to our work. If they continue to have a venue here then we are done posting here .... it's that simple. I respect whatever decision EMPIRE arrives at but we ask that he does the SAME regarding our decisions.

also:

mov [esi+0000061c],3b9ac9ff
mov ecx,[esi+0000061c]

is NOT the same as:

mov ecx, 3b9ac9ff

because [esi+0000061c] is holding the float value which declines as time goes on. I don't know if this code snippet has the actual DEC of the float in it but it's better to write to the [esi+0000061c] directly what you want it to be than to rely on the ecx register to carry the new value...

best,
Cal
  #8  
Old 09-04-2009, 10:02
Caliber Caliber is offline
Banned
 
Join Date: Feb 2007
Location: USA
Posts: 134
Thanks: 0
Thanked 1 Time in 1 Post
Caliber is on a distinguished road
also, we've had 19 downloads of our trainer so my thoughts on this game is that it's wildly unpopular OR people refuse to buy it and are waiting for the 'free warez' version of it.

best,
Cal
  #9  
Old 09-04-2009, 10:12
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 Caliber View Post
mov [esi+0000061c],3b9ac9ff
mov ecx,[esi+0000061c]

is NOT the same as:

mov ecx, 3b9ac9ff

because [esi+0000061c] is holding the float value which declines as time goes on. I don't know if this code snippet has the actual DEC of the float in it but it's better to write to the [esi+0000061c] directly what you want it to be than to rely on the ecx register to carry the new value...
Damn there goes my plan to see if he knew ASM O_o
  #10  
Old 09-04-2009, 10:55
h4x0r #'s Avatar
h4x0r # h4x0r # is offline
Registered User
 
Join Date: Apr 2009
Location: Spain
Posts: 200
Thanks: 0
Thanked 5 Times in 2 Posts
h4x0r # is on a distinguished road
Quote:
Originally Posted by DABhand View Post
Damn there goes my plan to see if he knew ASM O_o
some moderate to close the topic, because I do not stand this hypocrisy.
__________________
IN NEW PROJECTS
  #11  
Old 09-04-2009, 11:31
Joe Forster/STA's Avatar
Joe Forster/STA Joe Forster/STA is offline
Senior forum member
 
Join Date: Nov 2000
Location: Hungary
Posts: 9,790
Thanks: 16
Thanked 327 Times in 212 Posts
Joe Forster/STA is on a distinguished road
Closed upon request.
__________________
Joe Forster/STA
For more information, see the FileForums forum rules and the PC Games forum FAQ!
Don't contact me via E-mail or PM to ask for help with anything other than patches (or software in general) done by me, otherwise your request may be deleted without any reply!
Homepage: http://sta.c64.org, E-mail: [email protected]; for attachments, send compressed (ZIP or RAR) files only, otherwise your E-mail will bounce back!
Closed Thread

Thread Tools
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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Company of Heroes 2.100 trainer WardoggOne Game Trainers 37 25-08-2010 03:40
REQ: Stolen trainers to be removed from GCW BigBoi Game Trainers 87 09-04-2009 07:33
Seeking Help to find a Free, Simple ROTWK 2.01 Trainer DudeBoyz Game Trainers 22 14-08-2008 11:15



All times are GMT -7. The time now is 21:51.


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