🚨Admin Setup

This page explains how to setup your admins and all the configuration setups! Its very easy to use and simple to add more!

Learning How To Add

Adding Admin Groups

Adding admin groups is very simple and just requires some creativity for the name and some good copy and pasting skills! You can create as many groups as you please but each group must have all the values.

Example of what a admin group must have (true/false can be changed)

admingroups.lua
AdminGroups = {
    ["Owner"] = {
        AllPermissions = true,
        AdminChat = true,
        Reports = true,
        AdminSits = false,
        NoClip = false,

        Commands = {
            Goto = true,
            Bring = true,
            Freeze = true
        },

        OnlinePlayers = {
            Framework = {
                Revive = true,
                GiveItem = false,
                TakeItem = false,
                GiveMoney = false,
                TakeMoney = false,
                ForceSkin = false,
                SetJob = false,
                OpenInventory = false
            },
            Heal = false,
            Hurt = false,
            Teleport = true,
            Freeze = false,
            Ragdoll = false,
            Message = true,
            Spectate = false,
            Screenshot = true,
            Mute = true,
            ScrnEffects = false,
            Warn = true,
            Kick = true,
            Ban = false,
            History = true,
            SpawnVehicle = false
        },
        CachedPlayers = {
            SeeIdentifiers = true,
            ReasonForLeave = true,
            Ban = false
        },
        SelfOptions = {
            Framework = {
                Revive = false,
                GiveItem = false,
                TakeItem = false,
                GiveMoney = false,
                TakeMoney = false
            },
            AdminTag = false,
            Heal = false,
            Armor = false,
            Godmode = false,
            Invisible = false,
            NRagdoll = false,
            UnlimitedStam = false,
            FastRun = false,
            CDClothes = false,
            CPed = false,
            Suicide = false
        },
        VehicleOptions = {
            Framework = {
               GiveVehicle = false 
            },
            SpawnCar = false,
            DeleteCar = true,
            CleanCar = false,
            RepairCar = false,
            DoorControls = false,
            Colors = false,
            LicensePlate = false,
            VehGodmode = false,
            TorqueMod = false
        },
        DevOptions = {
            Coords = false,
            TP2Waypoint = false,
            Resources = false,
            Interior = false,
            Dimensions = false,
            DeleteGun = false
        },
        ServerOptions = {
            Framework = {
                ReviveAll = false,
                GiveItemAll = false,
                GiveMoneyAll = false
            },
            Announcement = false,
            HealAll = false,
            KickAll = false,
            UnBan = true,
            Wipes = true,
            Weather = false,
            PDensity = false,
            Backups = true
        },
        OACPlugins = {
            BanPlayer = true,
            KickPlayer = true
        },
        MiscOptions = {
            Minimap = true,
            TpLocations = true,
            ShowAllGhostUsers = true
        }
    }
}

Adding Admins To A Group

Even though you created a group in the admin groups you need to add the same group inside of the admins file! This is so you can set your wonderful staff to their right roles! Please note this is a json file so you will have to follow json format! The admin system supports the following below: - Discord ID | ex: discord:267181487328067585 - Game License | ex: license:b57267ca8ac5ee2e6218821d610f9aa9ff30a1c2 - Steam Hex | ex: steam:11000010ed87479 - Live ID | ex: live:985153924654637 - Xbox Live | ex: xbl:2535467967978841 - Ip | ex: ip:240.121.222.0 Example Below

Example of discord id roles

Examples Of Multiples

Multiple Admin Groups

This is an example of multiple groups to better help you understand adding more!

Multiple Admins

This is an example of how you could set up the admins for the example above. Below shows with discord role ids or with regular perms! Regular Method

Discord Role Id Method

Last updated