Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Guide OkokRequests - How to display?

Zan1456

Zan#1456
VIP
Joined
Mar 19, 2021
Messages
786
Solutions
5
Reaction score
88,222
Points
421
Location
Hungary
Website
vfivem.com
Client side:
Code:
exports['okokRequests']:requestMenu(target, time, title, message, trigger, side, parameters, parametersNum)

Server side:
Code:
TriggerClientEvent('okokRequests:RequestMenu', source, target, time, title, message, trigger, side, parameters, parametersNum)

Fields:
    • The target field defines who receives the request;
    • The time field lets you set the time the request window will stay on the screen;
    • The title field is where you set the request title;
    • The message field lets you choose the message that will appear on the request window;
    • The trigger field is where you choose the event that will be executed;
    • The side (client/server) field allows you to choose if the trigger is client or server sided;
    • The parameters field contains the parameters the trigger takes;
    • The parametersNum field are the number of paramenters used.

Example:
Code:
TriggerClientEvent('okokRequests:RequestMenu', source, tonumber(args[1]), 10000, '<i class="fas fa-question-circle"></i>&nbsp;Job Offer', 'Tommy wants to hire you.', 'client', 'parameter1,parameter2,parameter3,parameter4,parameter5', 5)

Important​

    • The side field should be either client or server;
    • The parameters field needs to be a string, all parameters need to be separated by a comma ',' and without any spaces;
    • Always set the number of parameters used, in the parametersNum field;
    • If you don't have any parameters, you don't need to add the parameters and the parametersNum field.

Dark/light theme​

To enable/disable the dark/light mode, you should go to the scripts.js file and navigate to the line 1, if var darkMode is set to true, the dark theme will be enabled, otherwise it the enabled theme will be the light.​
 
Top