Wert Jammer

You can access the setup information you need about this product

INSTALLATION

1 - Add jammer item your item list

-- Item
["jammer"] = {
    ["name"] = "jammer",
    ["label"] = "Jammer",
    ["weight"] = 10000,
    ["type"] = "item",
    ["image"] = "jammer.png",
    ["unique"] = true,
    ["useable"] = true,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Jammer"
},

2 - Make sure all depend scripts exist (Or download it)

3 - Add jammer script to resources file

4 - Load sql file in ur database

5 - Restart server and enjoy

NOTE : You can find the item image inside the folder

ZONE CONTROL

You can use this event to check whether the player has entered the jammer area in your different scripts.

RegisterNetEvent("wert-jammer:zone", function(enter)
    if enter then
        -- Enter jammer zone
        -- You can add disable exports here 
    else
        -- Exit jammer zone
        -- You can add enable exports here
    end
end)

Installation complete

Last updated