mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 01:08:54 +00:00
b167997977742fe2b3af655b9282d26588879937
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
62.3%
Lua
34.8%
TypeScript
1.2%
HTML
0.8%
CSS
0.7%
Other
0.2%