This update removes ox_lib as dependency in order to ensure long term stability.
Database will now automatically install
A full reinstallation is advised (except config folder).
Fixed issue with ox_inventory integration that was not calling the canUsePhone() function
Command permissions will no longer be assigned to groups. command.name should be added to server.cfg manually. (e.g. add_ace group.admin command.verifyvaccount allow
)
Client
--- Closes the phone
exports['okokPhone']:closePhone()
--- Island Notify
---@param data {title: string, text:string, app?: string, icon?: string, duration: number}
exports["okokPhone"]:notifyDI(data)
Server
--- Island Notify
---@param source number
---@param data {title: string, text:string, app?: string, icon?: string, duration: number}
exports["okokPhone"]:notifyDI(source, data)
--- Create Push Notifications
---@param imei string
---@param data {app: string, title: string, message: string, img?: string, type: "normal" | "emergency" | "amber", coords?: {x: number, y: number}}
exports["okokPhone"]:pushNotifyViaImei(imei, data)
---@param phoneNumber string
---@param data {app: string, title: string, message: string, img?: string, type: "normal" | "emergency" | "amber", coords?: {x: number, y: number}}
exports["okokPhone"]:pushNotifyViaPhoneNumber(phoneNumber, data)
--- Emergency Dispatch Notification
---@param source number
---@param coords {x: number, y: number} | vector(2) | vector(3) | vector(4)
exports["okokPhone"]:emergencyNotify(source, coords)
--- App Storage
--- If you want to store custom app data to a phone.
---@param imei string
---@param app string
---@return table | false
exports["okokPhone"]:getAppStorage(imei, app)
---@param imei string
---@param app string
---@param data table Must be hash table {key = value}
---@return boolean
exports["okokPhone"]:setAppStorage(imei, app, data)