Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Dragneel1234 authored May 22, 2017
1 parent 14f281b commit 6d04bed
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion NFSMW-S.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,16 @@
Chane the bounty of the first car
Same as last
'''
inptr.seek(0xE2FD)
inptr.seek(0xE2ED)
while(1):
bCar = inptr.read(1)
Car = int.from_bytes(bCar, byteorder="little")
if (Car == 0xFF):
inptr.seek(0x37, 1)
continue
else:
break
inptr.seek(0xF, 1)
bBounty = input("Modified Bounty: ")
print("Writing modified bounty...", end="")
Bounty = int(bBounty)
Expand Down

0 comments on commit 6d04bed

Please sign in to comment.