CheatDevice Wiki
Advertisement

Teleport[]

#cheat Teleport to X
teleport(X, Y, Z);
  • Turn Display Coordinates “On”
  • The first thing that you see is what you put above, type what’s in the parentheses into the X, Y and Z spots, in the same order you see in the game
Example:
#cheat Teleport top of tall building
teleport(95, -1509, 216.98);

Spawn Vehicle[]

Single Vehicle

#cheat Spawn X
setchar(08E4Ed88, A);
setchar(08E4Ed88 + 0x18, 0x01);
setfloat(08E4Ed8c, X, Y, Z, ANGLE)

Replace the A with the Car ID, find it here, and the X, Y, and Z with coordinates, as above in the teleport cheats, replace angle with the direction you want the vehicle to be facing

0 = North

90 = West

180 = South

270 = East

or any number in between for more specific direction

Example:

#cheat Spawn Hunter on Police HeliPad
setchar(08E4Ed88, 213);
setchar(08E4Ed88 + 0x18, 0x01);
setfloat(08E4Ed8c, 347.23, -1096.33, 1096.33, 90);


Note: You will have to leave the area and come back for the vehicle to appear, it is not like the spawn vehicle code already in the CheatDevice.

Spawn Weapons[]

Single Weapon-

#cheat Spawn X
setfloat(0x08e2d800+0, X, Y, Z);
setint(0x08e2d814+0, 0);
setchar(0x08E2D81C+0, 255, 255);
setshort(0x08e2d826+0, 0xID);
setchar(0x08e2d892+0, 0x0f);
setchar(0x08e2d893+0, 0x00);
setchar(0x08e2d8B0+0, 0xff);

Replace X, Y and Z with Coordinates, and ID with the weapon ID from the ID page to Spawn a pickup.


Example:

#cheat Spawn Pistol on Police Helipad
setfloat(0x08e2d800+0, 347.23, -1096.33, 1096.33);
setint(0x08e2d814+0, 0);
setchar(0x08E2D81C+0, 255, 255);
setshort(0x08e2d826+0, 0x0112);
setchar(0x08e2d892+0, 0x0f);
setchar(0x08e2d893+0, 0x00);
setchar(0x08e2d8B0+0, 0xff);

Edit Text[]

#cheat CHEAT NAME
setshort(08e4dac2, ENTER CODE HERE)
setchar(08e4dac0, 0x01)
#off
setchar(08e4dac0, 0x00)

Enter the letter codes below into "ENTER CODE HERE" and seperate each one with a comma

Example:

#cheat Say Hi!
setshort(08e4dac2, 0x48, 0x49, 0x20, 0x21)
setchar(08e4dac0, 0x01)
#off
setchar(08e4dac0, 0x00)
"Space" 0x20
"." 0x2E
"!" 0x21
"?" 0x3F
","

0x2C

Letter Upper Case Lower Case
A 0x41 0x61
B 0x42 0x62
C 0x43 0x63
D 0x44 0x64
E 0x45 0x65
F 0x46 0x66
G 0x47 0x67
H 0x48 0x68
I 0x49 0x69
J 0x4A 0x6A
K 0x4B 0x6B
L 0x4C 0x6C
M 0x4D 0x6D
N 0x4E 0x6E
O 0x4F 0x6F
P 0x50 0x70
Q 0x51 0x71
R 0x52 0x72
S 0x53 0x73
T 0x54 0x74
U 0x55 0x75
V 0x56 0x76
W 0x57 0x77
X 0x58 0x78
Y 0x59 0x79
Z 0x5A 0x7A
Advertisement