The Precinct [Full Release]

Upload your cheat tables here (No requests)
User avatar
Tahtawy
Expert Cheater
Expert Cheater
Posts: 146
Joined: Fri Mar 03, 2017 7:36 pm
Reputation: 115

The Precinct [Full Release]

Post by Tahtawy »

Here is a quick table for the full release version of The Precinct.

Table is for v1.4.18135 [May or may not work with other versions][No plans to update it for other versions]



Scripts include:

Infinite Health
Infinite Stamina
Health & Stamina Pointer Script
Inf. Ammo: You'll find the toggle for infinite ammo under Cheat Manager. Change it to On and freeze it and you'll have infinite ammo.
Total Ammo Pointer: You can freeze the total ammo amount for Inf. Ammo
No Reload: You must activate Inf. Ammo with it or it will still run out.
Gun Data Pointer: Contains some weapon stats.
Cheat Manager: Most of the pointers do nothing but you can toggle Infinite Ammo from here.
Rank Manager: Set _scoreToXpConversionRate to a higher number to multiply the experience calculated at end of shift.
Support Manager: Change change _supportTokens to whatever you want and freeze to have Inf. Tokens
Player Manager: you can change _invincible to 1 to have God Mode
Weapon Manager
Motor Settings you can increase _sprintVelocityMultiplier to raise your sprinting speed (will affect NPCs as well)
Player Upgrade Manager: You can change upgrade points from here
Time of Day: You can set "Time Is Stopped" to 1 OR "Time Speed Multiplier" to 0 to freeze the day time and have an infinite shift to do what you want.

Note: Haven't tested this table that much so there may be issues

Update 1:
- Apparently, Infinite Ammo Script was making the game crash when NPCs start shooting. So removed that script and replaced it with a Total Ammo Pointer Script. It will give you the Total Ammo for your current weapon and you can freeze that amount instead till OR if I find a better way to deal with this.
- Added Current and Max Health Pointers. Pointers script is still a work in progress so expect issues with it.
- Added an Inf. Health Script
- Fixed an issue with Inf. Stamina Script that made it affect NPCs (Hopefully)

Update 2:
- Fixed All Health and Stamina Scripts and their pointers. Now they're all much faster in populating.
- Changed Total Ammo to Gun Data Pointer. It now includes some weapons stats as well.
- Added a Gun Data Pointer that includes some weapon stats you can change.
- Added a Weapon Pointer which includes other minor weapon stats.
- Added a Cheat Manager scripts but most of the pointers do nothing when turned on.

Update 3:
- Added Support Manager [Under Base Pointer]
- Added Rank Manager [Under Base Pointer]

Update 4:
- Combined Cheat Manager and Weapon Manager with Base Pointer to make them populate faster.
- Added Player Manager under Base Pointer with some useful pointers
- Added Motor Settings script which can help you control the player speed through the highlighted texts

Update 5:
- Probably the last update
- Added some Vehicle Pointers under Base pointer like Speed Multiplier and Damage Multiplier [Set to 0 for Invincible car]
- Vehicle Pointers will only populate once you're inside a vehicle
- Added an Upgrade Manager to change your upgrade points. Will only populate when opening the Upgrade Menu

Update 6:
- Added Time of Day Pointers.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
Precinct_Tahtawy_Upd6.CT
(290.67 KiB) Downloaded 3996 times
Precinct_Tahtawy_Upd5.CT
(281.53 KiB) Downloaded 575 times
Precinct_Tahtawy_Upd4.CT
(210.92 KiB) Downloaded 1702 times
Precinct_Tahtawy_Upd3.CT
(122.66 KiB) Downloaded 475 times
Last edited by Tahtawy on Fri May 16, 2025 8:57 am, edited 19 times in total.

User avatar
festkula
Novice Cheater
Novice Cheater
Posts: 16
Joined: Fri Apr 04, 2025 12:45 pm
Reputation: 22

Re: The Precinct [Full Release]

Post by festkula »

makes my game crash

User avatar
Tahtawy
Expert Cheater
Expert Cheater
Posts: 146
Joined: Fri Mar 03, 2017 7:36 pm
Reputation: 115

Re: The Precinct [Full Release]

Post by Tahtawy »

festkula wrote:
Wed May 14, 2025 2:56 am
makes my game crash
Download the Upd1 table I just posted and try it. I removed the Inf. Ammo script that was causing the crashes. I replaced it with an Ammo Pointer script that you can use to freeze the Qty for now.

froski
What is cheating?
What is cheating?
Posts: 4
Joined: Fri Feb 14, 2025 10:19 am
Reputation: 2

Re: The Precinct [Full Release]

Post by froski »

i need infinite exp or exp multiplier can you do that ?

Fahry
Cheater
Cheater
Posts: 48
Joined: Fri Mar 03, 2017 1:02 pm
Reputation: 34

Re: The Precinct [Full Release]

Post by Fahry »

Infinite stamina script is not working properly, running depletes it, at least for me.
Game version is 1.4.18135
This worked out in my case.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+63B7B0) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here
addss xmm2,xmm1
movss [rcx+40],xmm0
originalcode:
subss xmm2,xmm1
movss [rcx+40],xmm0

exit:
jmp returnhere

"GameAssembly.dll"+63B7B0:
jmp newmem
nop 4
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+63B7B0:
db F3 0F 5C D1 F3 0F 11 41 40
//subss xmm2,xmm1
//movss [rcx+40],xmm0
Thıs one makes ammopouch much larger working pretty much as inf ammo.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+7A68D0) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here
add eax,#9000
mov [rdi+14],eax
mov rcx,[GameAssembly.dll+46D2630]
originalcode:
mov [rdi+14],eax
mov rcx,[GameAssembly.dll+46D2630]

exit:
jmp returnhere

"GameAssembly.dll"+7A68D0:
jmp newmem
nop 5
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+7A68D0:
db 89 47 14 48 8B 0D 56 BD F2 03
//mov [rdi+14],eax
//mov rcx,[GameAssembly.dll+46D2630]

User avatar
Tahtawy
Expert Cheater
Expert Cheater
Posts: 146
Joined: Fri Mar 03, 2017 7:36 pm
Reputation: 115

Re: The Precinct [Full Release]

Post by Tahtawy »

Updated table with some fixes and new additions.

michaelhost
Expert Cheater
Expert Cheater
Posts: 99
Joined: Thu Feb 27, 2020 12:31 pm
Reputation: 40

Re: The Precinct [Full Release]

Post by michaelhost »

could you add pointer for the support later? thanks

Fahry
Cheater
Cheater
Posts: 48
Joined: Fri Mar 03, 2017 1:02 pm
Reputation: 34

Re: The Precinct [Full Release]

Post by Fahry »

This should increase support on use
Attachments
Precinct suppt.CT
(1.35 KiB) Downloaded 250 times

Tyler52287
Novice Cheater
Novice Cheater
Posts: 17
Joined: Wed Sep 20, 2023 11:27 am
Reputation: 2

Re: The Precinct [Full Release]

Post by Tyler52287 »

Anything for XP or tokens?

Fahry
Cheater
Cheater
Posts: 48
Joined: Fri Mar 03, 2017 1:02 pm
Reputation: 34

Re: The Precinct [Full Release]

Post by Fahry »

Upgrade points will increase on use, need 1 for starter.
PS. attached script sets upgrade points to 32 on opening upgrades screen.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+969ECA) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
inc [rbx+40]
mov rcx,[rbx+38]

exit:
jmp returnhere

"GameAssembly.dll"+969ECA:
jmp newmem
nop 2
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+969ECA:
db FF 4B 40 48 8B 4B 38
//dec [rbx+40]
//mov rcx,[rbx+38]
Attachments
Precinct upgrades.CT
(1.35 KiB) Downloaded 284 times

User avatar
Tahtawy
Expert Cheater
Expert Cheater
Posts: 146
Joined: Fri Mar 03, 2017 7:36 pm
Reputation: 115

Re: The Precinct [Full Release]

Post by Tahtawy »

michaelhost wrote:
Wed May 14, 2025 10:54 am
could you add pointer for the support later? thanks
Added both Support and Rank Manager to the pointers list.

michaelhost
Expert Cheater
Expert Cheater
Posts: 99
Joined: Thu Feb 27, 2020 12:31 pm
Reputation: 40

Re: The Precinct [Full Release]

Post by michaelhost »

Thank you both of you, cheers

Tyler52287
Novice Cheater
Novice Cheater
Posts: 17
Joined: Wed Sep 20, 2023 11:27 am
Reputation: 2

Re: The Precinct [Full Release]

Post by Tyler52287 »

The precinct upgrades table crashes my game when enable the 2nd option

Fahry
Cheater
Cheater
Posts: 48
Joined: Fri Mar 03, 2017 1:02 pm
Reputation: 34

Re: The Precinct [Full Release]

Post by Fahry »

Tyler52287 wrote:
Wed May 14, 2025 4:32 pm
The precinct upgrades table crashes my game when enable the 2nd option
What`s your game version?

Tyler52287
Novice Cheater
Novice Cheater
Posts: 17
Joined: Wed Sep 20, 2023 11:27 am
Reputation: 2

Re: The Precinct [Full Release]

Post by Tyler52287 »

How do I see that?

Post Reply