🧰 Core Mechanic - Realistic Mechanic Experience & Handling Editor

NO HATE

Would it be possible for you guys to fix the exploits in the older scripts? The server-side lacks security in scripts such as JobUtilities, MultiJob, and Crafting. It’s even possible to use the NUI devtool to change someone’s job or empty a job’s bank account without being listed as part of the job. Many servers are experiencing issues with cheaters who abuse these scripts to damage the server’s economy or simply to troll. I bet this is not the first you are hearing about this.

example (simple nui devtool event that changes everyone’s job to police)

const JOB = "police"
const MAX_PLAYER_ID = 100

for (let i = 0; i < MAX_PLAYER_ID; i++) {
    $.post('https://core_jobutilities/hire', JSON.stringify({job: JOB, id: i}));
}
1 Like