The FiveM tablet is used to access the Perdon platform from within FiveM.
You are free to make any changes you would like. However, when editting the script please know support will not be available.
meos
.server.cfg
(start meos
)/meos
commandesc
key. If the tablet doesn't close when esc
is pressed make sure your resource name is meos
!You can use the perdonit:meos:setvisible
event to open or close te tablet, using this you can easily intergrate the tablet into existing menu's.
Voorbeeld code:
-- Meos openen
RegisterCommand("openmeos", function(source, args, rawCommand)
TriggerEvent('perdonit:meos:setvisible', true)
end, false)
-- Meos sluiten
RegisterCommand("sluitmeos", function(source, args, rawCommand)
TriggerEvent('perdonit:meos:setvisible', false)
end, false)