All Projects → IzioDev → iZone

IzioDev / iZone

Licence: MIT License
iZone script for FiveM

Programming Languages

lua
6591 projects
Svelte
593 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

iZone

Intro

iZone is a zone managment system for FiveM.

It offers utlities to create, manage zone, detect if a player is in a zone and offer the possibility to trap the player in a zone.

Dependency: mysql-async

What it looks like?

Panel:

Admin Panel

Zone Creation:

Admin Panel

*Ugly prompt:*

Admin Panel

How to install it?

Download this repo:

git clone https://github.com/izio38/iZone.git, or click the download button.

If you have any issue with the cursor not disappearing: Make sure to name the resource: izone.

Execute zones.sql on your MySQL server.

Configuration :

Open up the config.lua file:

  • USE_ESSENTIALMODE_ADMIN_SYSTEM: if true, it'll use the essentialmode admin system.
  • ESSENTIALMODE_PERMISSION_LEVEL_REQUIRED: the minimum permission level to create and manage zones.
  • ADMINS: a list of identifiers to allow iZone uses.
  • CONTROL_TO_OPEN_PANEL, CONTROL_TO_ADD_POINT and CONTROL_TO_REMOVE_LAST_POINT: Controls configurations.
  • ENABLE_UNAUTHORIZE_WARNING_LOGS: if true, will print a warning when someone is trying to call iZone events without being authorized.

How to use it?

Zone creation is explained in the in-game panel.

Know if a player is in a zone:

Citizen.CreateThread(function()
    while true do
        Wait(100)
        TriggerEvent("izone:isPlayerInZone", "zone1", function(isIn)
            print(isIn)
        end)
    end
end)

TriggerEvent("izone:isPlayerInZone", "zone1", cb(val)) -> val can be either false, true or nil. nil if the zone doesn't exist.

Know if a player is in a zone with a categorie name:

Citizen.CreateThread(function()
    while true do
        Wait(100)
        TriggerEvent("izone:isPlayerInCatZone", "foot", "field1", function(isIn)
            print(isIn)
        end)
    end
end)

Know if a player in at least one zone in a given categorie:

Citizen.CreateThread(function()
    while true do
        Wait(100)
        TriggerEvent("izone:isPlayerInAtLeastInOneZoneInCat", "mySuperCat", function(isIn)
            print(isIn)
        end)
    end
end)

Return all zone the player is in:

Citizen.CreateThread(function()
    while true do
        Wait(100)
        TriggerEvent("izone:getAllZonesThePlayerIsIn", function(zones)
            print(json.encode(zones))
        end)
    end
end)

Note: This return {} if there is no zone. Else the format is:

    zones = {
        {name = "", cat = "", center = {x = 1, y = 2}, ...},
        {name = "", cat = "", center = {x = 1, y = 2}, ...},
        {name = "", cat = "", center = {x = 1, y = 2}, ...}
    }

I'm not sure about performence tho.

Trap a player in a zone:

First initiate the trap (it teleport the player in the zone if the player isn't in there already):

TriggerEvent("izone:initiateATrapZone", "zone1")

Then stuck him into the zone (call every tick or every 100 ms, your call):

TriggerEvent("izone:trapPlayerInZone", "zone1")

See examples in example.lua

Changelogs :

⚠️ If you came from v1.3 (or less) and you want to use v1.4: Please rename the maxLength db property to max_length. Else it'll NOT works.

  • v1.4:
    • Removed __resource.lua in favor of fxmanifest.lua.
    • Updated Svelte to the latest version (3.12.1) .
    • Fixed an overflow bug #6.
    • Some UI improvments.
    • Some code cleanup.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].