Players

View detailed information about every player online, including quick actions, character details, vehicles, houses, identifiers, licenses, billing information, and notes.

Players

Quick Actions

List of commands that you can use on the selected person

Player Information:

A list of character values

(First Name, Last Name, Date Of Birth, Height, Sex, Money, Black Money and Bank are editable)

Vehicles

A list of the character vehicles, if you click on the button "see more" it will redirect you to the owner vehicles and select that vehicle on the Vehicles Page


Houses

A list of character Houses, if you provide "entryCoords" it will display a button with text "GO TO" where you can click and go to the house

Identifiers

List of player identifiers like steam, discord, live, license...

Licenses

List of character licenses like dmt, drive, drive_bike, drive_truck


Billing

A list of billing from the character esx_billing

Notes

List of notes used by staff to keep a type of "history" of the player


Customizing data

rbStaff/client/customize_me.lua: Inside this file you will find the function "getPlayerInformation", if you want to change something in the menu above its here!

...

function getPlayerInformation(xPlayer)
    return {
        { editable = "firstName", label = "First Name", value = xPlayer.get("firstName") },
        { editable = "lastName", label = "Last Name", value = xPlayer.get("lastName") },
        { editable = "dob", label = "Date of Birth", value = xPlayer.get("dateofbirth") },
        { editable = "height", label = "Height", value = xPlayer.get("height") },
        { editable = "sex", label = "Sex", value = xPlayer.get("sex") },
        { label = "Group", value = xPlayer.getGroup() },
        { label = "Work", value = xPlayer.job.label },
        { label = "Work (Grade)", value = "[" .. xPlayer.job.grade ..  "] " .. xPlayer.job.grade_label  },
        { editable = "money", label = "Money", value = xPlayer.getAccount("money").money },
        { editable = "black_money", label = "Black Money", value = xPlayer.getAccount("black_money").money },
        { editable = "bank", label = "Bank", value = xPlayer.getAccount("bank").money },
    }
end

Last updated