mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-02 03:08:52 +00:00
7432279e9245321bab76326b8b58dd0db0fcba1c
fxserver-cron
FXServer CRON
fxserver-esx_addonaccount
ESX AddonAccount
[INSTALLATION]
- CD in your resources folder
- Clone the repository
git clone https://github.com/FXServer-ESX/fxserver-cron cron
- Add this in your server.cfg :
start cron
[USAGE]
-- Execute task every 5:10
function CronTask(d, h, m)
print('Task done')
end
TriggerEvent('cron:runAt', 5, 10, CronTask)
-- Execute task every monday at 18:30
function CronTask(d, h, m)
if d == 1 then
print('Task done')
end
end
TriggerEvent('cron:runAt', 18, 30, CronTask)
Description
Languages
JavaScript
60.8%
Lua
34.6%
TypeScript
1.7%
CSS
1.2%
HTML
0.8%
Other
0.9%