-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement #24 Implement #24 * Resolve issues with weapons not adding * Remove due to ugly overflow * Fix kill and revive player * Fix view inventory * Remove old customs option * Give keys on plate change * Fix issue where it wouldn't give money
- Loading branch information
Showing
8 changed files
with
210 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
local reportOptions = { | ||
function(report) | ||
lib.alertDialog({ | ||
header = string.format('Report ID: %s | Sender: %s', report.id, report.senderName), | ||
content = report.message, | ||
centered = true, | ||
cancel = false, | ||
size = 'lg', | ||
labels = { | ||
confirm = 'Close' | ||
} | ||
}) | ||
|
||
lib.showMenu(('qbx_adminmenu_reports_menu_%s'):format(report.id), MenuIndexes[('qbx_adminmenu_reports_menu_%s'):format(report.id)]) | ||
end, | ||
function(report) | ||
local input = lib.inputDialog(string.format('Report ID: %s | Sender: %s', report.id, report.senderName), { | ||
{type = 'input', label = 'Reply'} | ||
}) | ||
|
||
if not input then | ||
exports.qbx_core:Notify(locale('error.no_report_reply'), 'error') | ||
else | ||
TriggerServerEvent('qbx_admin:server:sendReply', report, input[1]) | ||
end | ||
|
||
lib.showMenu(('qbx_adminmenu_reports_menu_%s'):format(report.id), MenuIndexes[('qbx_adminmenu_reports_menu_%s'):format(report.id)]) | ||
end, | ||
function(report) | ||
TriggerServerEvent('qbx_admin:server:deleteReport', report) | ||
|
||
GenerateReportMenu() | ||
end | ||
} | ||
|
||
function GenerateReportMenu() | ||
local reports = lib.callback.await('qbx_admin:server:getReports', false) | ||
|
||
if not reports or #reports < 1 then | ||
lib.showMenu('qbx_adminmenu_main_menu', MenuIndexes.qbx_adminmenu_main_menu) | ||
return | ||
end | ||
|
||
local optionsList = {} | ||
|
||
for i = 1, #reports do | ||
optionsList[#optionsList + 1] = {label = string.format('Report ID: %s | Sender: %s', reports[i].id, reports[i].senderName), description = locale('report_options.desc1'), args = {reports[i]}} | ||
end | ||
|
||
lib.registerMenu({ | ||
id = 'qbx_adminmenu_reports_menu', | ||
title = locale('title.reports_menu'), | ||
position = 'top-right', | ||
onClose = function(keyPressed) | ||
CloseMenu(false, keyPressed, 'qbx_adminmenu_main_menu') | ||
end, | ||
onSelected = function(selected) | ||
MenuIndexes.qbx_adminmenu_reports_menu = selected | ||
end, | ||
options = optionsList | ||
}, function(_, _, args) | ||
local report = args[1] | ||
|
||
lib.registerMenu({ | ||
id = ('qbx_adminmenu_reports_menu_%s'):format(report.id), | ||
title = string.format('Report ID: %s | Sender: %s', report.id, report.senderName), | ||
position = 'top-right', | ||
onClose = function(keyPressed) | ||
CloseMenu(false, keyPressed, 'qbx_adminmenu_reports_menu') | ||
end, | ||
onSelected = function(selected) | ||
MenuIndexes[('qbx_adminmenu_reports_menu_%s'):format(report.id)] = selected | ||
end, | ||
options = { | ||
{label = 'View Message', icon = 'fas fa-message'}, | ||
{label = 'Send Message', icon = 'fas fa-reply'}, | ||
{label = 'Close Report', icon = 'fas fa-trash'}, | ||
{label = string.format('Claimed By: %s', report.claimed)}, | ||
{label = string.format('Report ID: %s', report.id)}, | ||
{label = string.format('Sender ID: %s', report.senderId)}, | ||
{label = string.format('Sender Name: %s', report.senderName)} | ||
} | ||
}, function(selected) | ||
local reportOption = reportOptions[selected] | ||
|
||
if not reportOption then | ||
lib.showMenu(('qbx_adminmenu_reports_menu_%s'):format(report.id), MenuIndexes[('qbx_adminmenu_reports_menu_%s'):format(report.id)]) | ||
return | ||
end | ||
|
||
reportOption(report) | ||
end) | ||
|
||
lib.showMenu(('qbx_adminmenu_reports_menu_%s'):format(report.id), MenuIndexes[('qbx_adminmenu_reports_menu_%s'):format(report.id)]) | ||
end) | ||
|
||
lib.showMenu('qbx_adminmenu_reports_menu', MenuIndexes.qbx_adminmenu_reports_menu) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
return { | ||
commandPerms = { | ||
useMenu = 'mod', | ||
reportReply = 'mod', | ||
noclip = 'mod', | ||
names = 'mod', | ||
blips = 'mod', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters