Jérémie N'gadi b167997977 Add files
2017-08-01 14:13:51 +02:00
2017-08-01 14:13:51 +02:00
2017-08-01 14:13:51 +02:00
2017-08-01 14:12:55 +02:00

fxserver-cron

FXServer CRON

fxserver-esx_addonaccount

ESX AddonAccount

[INSTALLATION]

  1. CD in your resources folder
  2. Clone the repository
git clone https://github.com/FXServer-ESX/fxserver-cron cron
  1. 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)

S
Description
Official Repo For core resources for esx-legacy
Readme 49 MiB
Languages
JavaScript 62.3%
Lua 34.8%
TypeScript 1.2%
HTML 0.8%
CSS 0.7%
Other 0.2%