🛠️General config

This page will explain all the config fields and integrations needed !

cfg.authWeapons

This config is a list of all the weapons that are used by the scriptto decapitate someone.

You can add new one by using this website, crating a new row with the hash inside brackets like this

[WEAPONHASH] = true,

if you want to delete one, juste set it at false or delete it from the list !


cfg.ignorePlayers

If this config is set to true, it will ignore players and not decapitate them. Otherwise it will have not effect.

cfg.ignorePlayers = false

cfg.ignoreList

This is a list of all the peds on which the decapitation will have no effects. Hash is used by the script, so dont forget to put GetHashKey("YOUR_PED_NAME").

cfg.ignoreList = {
    [GetHashKey('a_c_cat_01')] = true,
    [GetHashKey('a_c_chickenhawk')] = true,
    [GetHashKey('a_c_chimp')] = true,
    [GetHashKey('a_c_chop')] = true,
}

Last updated