Guides \ CheatDevice v0.7
CheatDevice v0.7(d)
for Liberty City Stories (PSP)
by Edison Carter
----------------------------------------------------------------------------------------------------------------
INSTALLATION
----------------------------------------------------------------------------------------------------------------
For firmware 2.0, 2.01, 2.5 and 2.6.
Unzip the archive to your memory card so the files go in
PSP/SAVEDATA/ULES00151S0. This replaces the first save on the card.
To start CheatDevice, simply load it like a saved game. You can then load
your own saved game if you want.
----------------------------------------------------------------------------------------------------------------
FEATURE RUNDOWN
----------------------------------------------------------------------------------------------------------------
v0.1) Infinite health, edit wanted level, edit time, edit weather, snow,
spawn anything, display coordinates and speed.
v0.2) Teleport, step through walls, power jump.
v0.3) Screenshot, edit car colors, never fall off your bike.
v0.4) Your car is indescructible, or always steaming, smoking, or on fire,
no reload, firmware 2.6 support.
v0.5) Set CPU speed between 222MHz and 333MHz, battery info,
video recorder, heavy motorcycle, turn while jumping.
v0.6) Flyable Dodo with thrust, step up/down.
v0.7) Cheat Maker, gameplay speed, walking speed, gravity, freeze everything,
bikes can drive on walls, flip over, unlimited heli flying height, ped outfits .
----------------------------------------------------------------------------------------------------------------
ORIGINAL CHEAT MAKER PROGRAMMING GUIDE BY EDISON CARTER
----------------------------------------------------------------------------------------------------------------
Programming for CheatDevice's cheats.txt file
Cheats can be added to CheatDevice by creating the file cheats.txt in the
root of the memory card. Although the syntax looks like C, it's not C.
None of the C operators and keywords are implemented except + and - and
what's listed below.
Commands: (case sensitive)
#cheat Cheat Title
#off
// comments
setchar(startaddress, intvalue, ...);
sethex(startaddress, hexintvalue, ...;
setshort(startaddress, intvalue, ...);
setint(startaddress, intvalue, ...);
setfloat(startaddress, floatvalue, ...);
teleport(x, y, z);
Formats for numeric constants:
decimal: 123
hex: 0xABCF0 or 0xabcf0
binary: 0b00100101101
float: 1.23
addresses must be hex
Special pointer constants:
pplayer: Pointer to player object.
pcar: Pointer to player's car object. Any command that uses this
only executes when the player is in a car.
pobj: Pointer to player object if on foot, or player's car object
if in a vehicle.
Some examples:
// any comments, such as author credits
#cheat Teleport: Top of Tall Building
teleport(95, -1509, 216.98);
#cheat Hud On
setchar(0x08b59b0a, 1);
#cheat Hud Off
setchar(0x08b59b0a, 0);
#cheat Max Money
setint(0x08b89acc, 99999999);
setint(0x08b89ad0, 99999999);
Functions with "..." can write any number of values starting at the given
address, so Max Money could also be written as:
#cheat Max Money
setint(0x08b89acc, 99999999, 99999999);
#cheat No Money
setint(0x08b89acc, 0, 0);
#cheat Time is 9:30am
setchar(0x08b5e090, 9, 30);
The #off section is used to set a value back to its normal setting and is
executed a single time when a cheat is turned off. For example:
// by vettefan, requires CheatDevice 0.7d
#cheat Invisible Toni
setchar(pplayer + 0x19A, 0xE2);
#off
setchar(pplayer + 0x19A, 0x02);
// by chrislawrance, requires CheatDevice 0.7d
#cheat Lock Camera
setchar(pplayer + 0x560, 1);
#off
setchar(pplayer + 0x560, 0);
Integer values can be treated as signed or unsigned. All of the following
commands set the same value:
setchar(0x08b89acc, 255);
setchar(0x08b89acc, -1);
setchar(0x08b89acc, 0xff);
setchar(0x08b89acc, 0xFF);
setchar(0x08b89acc, 0b11111111);
sethex(0x08b89acc, ff);
sethex is just a version of setchar that assumes all values are hex so you
can leave off the 0x.
Cheat Maker automatically performs region conversion behind the scenes
so users of the UK version see the same addresses as the US version and
addresses entered are automatically converted to the correct region.
There is no need to give different versions of cheats for UK and US
versions of the game.
----------------------------------------------------------------------------------------------------------------
ORIGINAL PED OUTFIT GUIDE BY EDISON CARTER
----------------------------------------------------------------------------------------------------------------
0 = toni
1 = police officer
2 = swat guy
3 = fbi task force guy
4 = army guy
5 = guy in green uniform
6 = firefighter
7 = guy in grey shirt and hat and brown pants
8 = (crash)
9 = taxi driver
10 = pimp
11 = black guy in blue and brown coat
12 = guy with black knit hat, blue jeanes jacket and green pants
13 = blading white guy in grey suit
14 = black guy with white R* logo baseball cap
15 = big redheaded guy with light blue striped shirt
16 = big black guy in tan jacket and white baseball cap
17 = lady with black hair in white shirt and blue pants
18 = lady in green jersey and baseball cap
19 = lady with black hair in black business dress with white collar
20 = fat black woman with purple clothes
21 = fat short woman with white shirt
22 = black hooker with afro
23 = hooker with red skirt and short coat
24 = black guy with black knit hat
25 = old guy in brown suit
26 = old guy with hat
27 = black lady
28 = old thin guy with brown coat and grey hat
29 = fat ugly guy
30 = old lady
31 = fat ugly lady with yellow shirt
32 = old guy with red shirt and suspenders
33 = old guy with old time hat and brown suit
34 = old woman with white shirt and blue dress
35 = woman with orange shirt
36 = white guy with black coat
37 = black guy with blue shirt and same coat as the last guy
38 = old bum with brown coat
39 = old bum
40 = guy with blue shirt and hat
41 = big black guy with blue coat and hat
42 = businessman in blue suit
43 = businessman with coat
44 = guy in overcoat
45 = lady in office attire
46 = woman in cream color overcoat
47 = secretary
48 = car salesman
49 = businesswoman in brown suit
50 = man with yellow uniform
51 = lady with yellow uniform
52 = guy with cocks team jacket and hat on backwards
53 = guy with cocks team jacket and hat
54 = lady with cocks team jacket and hat
55 = white guy with green and white uniform
56 = black woman with green and white uniform
57 = construction worker with orange and yellow vest
58 = black construction worker
59 = lady with blue overcoat and white shopping bags
60 = old lady with blue shopping bags and hat
61 = short girl in short pants with shopping bags
62 = guy in trenchcoat
63 = librarian woman with glasses
64 = old guy with hat
65 = woman with red hat
66 = political rally man in suit with red prize ribon and goofy red white and blue hat
67 = political rally woman in blue pants suit with red prize ribon on pocket
68 = assassin guy in black with black gloves, no hat
69 = (crash)
70 = (crash)
71 = ?
72 = ?
73 = (crash)
74 = ?
75 = ?
76 = ?
77 = (crash)
78 = (crash)
79 = guy in dark suit
80 = men in black assassin guy with goatee, dark suit, dark glasses, black gloves
81 = asian guy in blue running suit with dark glasses
82 = asian guy in blue running suit
83 = asian guy with red coat and red hat
84 = tall guy with red plaid shirt and brown pants
85 = asian badguy in dark blue suit with dark glasses
86 = asian businessman in blue suit
87 = yardie with yellow swimming goggles on head wearing red, yellow, blue and green
88 = yardie with green k-jah radio tshirt
89 = mexican badguy with gold cross chain, red shirt and brown coat
90 = mexican badguy with gold chain, blue shirt and brown coat
91 = black guy with red hoody
92 = black guy with red baseball hat
93 = fat tough guy with purple shirt and grey pants
94 = fat tough guy with receeding hairline
95 = big guy with yellow sunglasses
96 = big guy with brown coat
97 = undercover cop with white pants
98 = undercover cop with dark sunglasses black shirt and grey suit, badge around neck
99 = undercover cop in tshirt with goatee, badge around neck
100 = black undercover cop with white gilligan hat and police badge in pocket
101 = balding undercover cop with blue shirt and badge in pocket
102 = undercover cop in brown suit with badge around neck
103 = guy in white shirt and pants and tan short sleeve coat
104 = guy with dark glasses, black shirt, grey suit
105 = (crash)
114 = (crash)
120 = (crash)
140 = (crash)
180 = (crash)
193 = (crash)
----------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------
15 Jan 2006
2
Join MyPSP to vote for your favourite story!
- More Info:
- Hori Screen Protectors