NonLethalTasers - Tasers Wont Kill!

Ever have the problem where tasers kill peds on FivePD? Well this is the script for you!


Info:
I have created a script to where when you tase locals/peds they will not die.


Before Preview:


After Preview:


Download:
You can download it from my GitHub Here:


Install:
To Install this drag “NonLethalTasers” Folder into your server resources folder.

Then go into your server.cfg and add “ensure NonLethalTasers” at the bottom.


Credits:

CyCoSnag’s Weapon Metas:

Initial Release → Information on how I could acheive this.

Current Release → Nothing.

RtheAmazing’s Realistic Ped Damages:

Idea to create the resource after I could not find the file after GTAPoliceMods went down.


PLEASE DONT REUPLOAD WITHOUT MY PERMISSION!

Version: 1.0.1

2 Likes

Rather than replace the metas for every base game weapon, it would make more sense to just replace the taser weapon, and remove the other 21,000+ lines from the meta file.

1 Like

I thought I did that, thanks for informing me I’ll change that now!

EDIT: Update for this will be out hopefully tomorrow.

Awesome Addition!!!

there is easier way to do it

client.lua

Citizen.CreateThread(function()
SetWeaponDamageModifier('weapon_stungun_mp', 0.0)
SetWeaponDamageModifier('weapon_stungun', 0.0)
end)

fxmanifest.lua

fx_version 'cerulean' 
game 'gta5'

client_script 'client.lua'

1 Like

Changes the weapon damage output by the given multiplier value. Does NOT need to be called every frame.

UPDATED. [Less Code]