GTA standard weapon names change to real weapon names

Hello everybody,
I wanted to change the GTA standard weapon names to real names, by that I meant, e.g. rename the pistol “Pistol” to the Glock 17. “Glock 17” I use ESX, so I would like the Glock 17 to be a name in the weapons shop. I can’t find any tutorials on this, can someone help me? Thanks in advance.

1 Like

If your using an inventory system with items, This could already be located in your database with it being available to edit label names.

If not I would go about pushing your weapons names like this:

Config.Weapons = {
 
    [GetHashKey("weapon_unarmed")] = {

        ["name"] = "weapon_unarmed",

    },

    [GetHashKey("weapon_pistol")] = {

        ["name"] = "Glock 17",

    }

}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.