├── client └── client.lua ├── config.lua ├── fxmanifest.lua ├── html ├── app.js ├── img │ ├── armor.png │ ├── bandage.png │ ├── cash.png │ ├── chips.png │ ├── cola.png │ ├── combat-pistol.png │ ├── creditCard.png │ ├── fix_kit.png │ ├── joint.png │ ├── knuckles.webp │ ├── logo.png │ ├── louis_vuitton.webp │ ├── m5-comp.png │ ├── medikit.png │ ├── shotgun.webp │ └── vespa.webp ├── jquery-3.4.1.min.js ├── main.html └── style.css ├── readme.md └── server ├── server.lua └── version.lua /client/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/client/client.lua -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/config.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /html/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/app.js -------------------------------------------------------------------------------- /html/img/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/armor.png -------------------------------------------------------------------------------- /html/img/bandage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/bandage.png -------------------------------------------------------------------------------- /html/img/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/cash.png -------------------------------------------------------------------------------- /html/img/chips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/chips.png -------------------------------------------------------------------------------- /html/img/cola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/cola.png -------------------------------------------------------------------------------- /html/img/combat-pistol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/combat-pistol.png -------------------------------------------------------------------------------- /html/img/creditCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/creditCard.png -------------------------------------------------------------------------------- /html/img/fix_kit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/fix_kit.png -------------------------------------------------------------------------------- /html/img/joint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/joint.png -------------------------------------------------------------------------------- /html/img/knuckles.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/knuckles.webp -------------------------------------------------------------------------------- /html/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/logo.png -------------------------------------------------------------------------------- /html/img/louis_vuitton.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/louis_vuitton.webp -------------------------------------------------------------------------------- /html/img/m5-comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/m5-comp.png -------------------------------------------------------------------------------- /html/img/medikit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/medikit.png -------------------------------------------------------------------------------- /html/img/shotgun.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/shotgun.webp -------------------------------------------------------------------------------- /html/img/vespa.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/img/vespa.webp -------------------------------------------------------------------------------- /html/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /html/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/main.html -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/html/style.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/readme.md -------------------------------------------------------------------------------- /server/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/server/server.lua -------------------------------------------------------------------------------- /server/version.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Michele-Arici/complete_daily_bonus/HEAD/server/version.lua --------------------------------------------------------------------------------