home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR24 / SCCRACK.ZIP / SCCRACK.NFO < prev   
Text File  |  1993-04-22  |  3KB  |  55 lines

  1. Ok guys.. Here it is.. A full crack for the install of Strike Commander..
  2. I've been waiting (like you guys) for this game for a LOOOONG time, and was
  3. sure that the UNT release was a Beta because of the "bugs" in the sim..
  4. I. E. "You've gone over to the Dark Side son!", and A being Eject..
  5.  
  6. If these are happening to you, then you have a bad crack..  After thinking
  7. that it might NOT be a beta, I went in to see what Wayward did to crack it,
  8. and found the doc check routine, and it was a weird puppy.  If you looked at
  9. each line, and determined what it did in your head, you would figure out that
  10. it was just an ordinary C input and ToUpper routine.  They get the password,
  11. and convert it to uppercase, and then call an INT 15 with ES:DI pointing to
  12. the password you just entered..  I'm not sure exactly what that INT 15 does,
  13. I didn't get into it that far yet, but I did manage to find where they make
  14. the "fix" to let the game work.  It seems that they take your password, and
  15. use it to generate a Dword value.  They take that value and put it in the
  16. SC.EXE file.  The game then looks at that value to determine if you get to
  17. play for real or not.  I've installed this thing about 10 times this morning
  18. so that I could get all kinds of different passwords, and did them wrong, and
  19. strange..  They all generate the SAME Dword value if you put in the right one.
  20. Sooo...  I make the program get the right value instead of the Computed value.
  21. (See code sample)..  It always puts in the right Dword, and the game always
  22. works.  Nice game, but not what the hype made it out to be.  Just another
  23. F-16 simulator..
  24.  
  25. Actual code from the routine to determine if you Live or if you Die..
  26.  
  27.     NOP                             ; Thanks Guys! I really needed this
  28.     NOP                             ; Space to put my bytes to crack it!
  29.     MOV     EAX,[BP+06]             ; Get the Dword from Storage
  30.     MOV     Dword Ptr [225F],EAX    ; Put it in the buffer about to be
  31.                     ; Written to Offset $200 of Sc.exe
  32.  
  33. This game was written to be cracked..  They left me a couple of NOP's in the
  34. right place so that I could put in the 6 byte op code in place of the 4 byte
  35. one that was in there..  THANKS GUYS!  My theory is that the "In-House"
  36. version of this game had the same code in this place that mine does now, and
  37. they just changed a couple of bytes to make the "Production" version.
  38.  
  39. Also, in case you didn't notice (I didn't until I got into the install), the
  40. SC.EXE is ALMOST the same file as INSTALL.EXE.  They Copy Install.EXE over
  41. to SC.EXE, and then make the changes to it.
  42.  
  43. The "Cinema" sections of the game are quite nice.  I'm still waiting for
  44. someone to sync up the lips with the words being said.  That'll be something.
  45. Now for my bitches..  FUCK the map generation! Put the maps on the disk!  I
  46. HATE having to wait 10 minutes for it to generate the stinking maps!  Also, I
  47. want to be able to pick ANY weapon for ANY mission.  On Mission 2, I want
  48. MAVERICKS!
  49.  
  50. Someone said that there is another doc check in the game somewhere..  If there
  51. is, get me a save game right before it happens, and tell me what to do, and
  52. I'll give it a shot..
  53.  
  54.  
  55.