├── .gitattributes ├── 2 - Setting Up ├── calculator.html └── script.md ├── About the Channel └── script.md ├── FiveM - 100 sub special ├── __resource.lua ├── serious.lua └── weather.lua ├── FiveM - All About Blips...again └── blips │ ├── blips_old │ ├── README.md │ ├── coords.lua │ ├── fxmanifest.lua │ ├── main-s.lua │ └── main.lua │ ├── coords.lua │ ├── fxmanifest.lua │ ├── main-s.lua │ └── main.lua ├── FiveM - All About Vectors with Blips and 3D Text └── vectors │ ├── __resource.lua │ └── client.lua ├── FiveM - Back to The Basics └── basics │ ├── __resource.lua │ ├── basic-c.lua │ └── basic-s.lua ├── FiveM - Configuring Your Server ├── example │ └── server.cfg └── script.md ├── FiveM - Creating Your First Resource └── code │ └── help │ ├── __resource.lua │ └── help-c.lua ├── FiveM - Creating a Server └── script.md ├── FiveM - Creating a Speedometer Using Conditionals and Math └── speedometer │ ├── __resource.lua │ └── speedometer-c.lua ├── FiveM - Creating a menu with NativeUI Lua └── menu │ ├── __resource.lua │ └── menu.lua ├── FiveM - Discord Bot Resource that Runs with FXServer (discord.js) └── discordbot │ ├── .gitignore │ ├── README.md │ ├── bot.js │ ├── fxmanifest.lua │ ├── package.json │ └── utils │ └── index.js ├── FiveM - Discord Rich Presence └── RichPresence │ ├── __resource.lua │ └── discord.lua ├── FiveM - Draw Marker, Warp, and Teleporting └── warps │ ├── fxmanifest.lua │ └── src │ ├── locations.lua │ ├── loop.lua │ └── notify.lua ├── FiveM - Emotes (Tasks and Ped Scenarios) └── emotes │ ├── __resource.lua │ ├── emotes.lua │ └── main.lua ├── FiveM - FiveM NUI (Inputs, Values, etc) └── nui2 │ ├── __resource.lua │ ├── html │ ├── index.css │ ├── index.html │ ├── index.js │ └── reset.css │ └── nui.lua ├── FiveM - GTA V Natives, Key Press, Giving Weapons └── code │ └── guns │ ├── __resource.lua │ ├── functions.lua │ ├── guns-c.lua │ └── weapons.lua ├── FiveM - Game Events └── game_events │ └── fxmanifest.lua ├── FiveM - Getting values in MYSQL └── mysql │ ├── __resource.lua │ ├── client.lua │ └── server.lua ├── FiveM - HTTP Methods and API Usage with Webhooks └── webhook │ ├── __resource.lua │ └── webhook_s.lua ├── FiveM - Inserting values in MYSQL └── mysql │ ├── __resource.lua │ ├── client.lua │ ├── main.sql │ ├── resources.example.cfg │ └── server.lua ├── FiveM - Intro to JS Scripting └── jsChat │ ├── __resource.lua │ └── src │ ├── client.js │ └── server.js ├── FiveM - JS Loops and Ticks └── jsThread │ ├── __resource.lua │ ├── main.js │ └── wait.js ├── FiveM - Loadscreens with loadbars and music └── loadscreen │ ├── __resource.lua │ └── html │ ├── index.html │ ├── jeva.png │ ├── main.css │ ├── main.js │ └── song.mp3 ├── FiveM - More Natives, Spawning Cars, Tables └── guns │ ├── __resource.lua │ ├── functions.lua │ └── guns-c.lua ├── FiveM - Ped AI and Manipulation └── peds │ ├── __resource.lua │ └── ped_c.lua ├── FiveM - Ragdoll keybind └── ragdoll │ ├── __resource.lua │ └── client.lua ├── FiveM - Server Events and Chat Arguments └── announce │ ├── __resource.lua │ ├── client.lua │ └── server.lua ├── FiveM - Server and Client Sided Exports ├── exp │ ├── __resource.lua │ ├── client.lua │ └── server.lua └── exp_test │ ├── __resource.lua │ └── cmds │ ├── client_test.lua │ └── server_test.lua ├── FiveM - Text and Rectangles └── text │ ├── __resource.lua │ └── text-c.lua ├── FiveM - Traffic and Ped Density └── traffic │ ├── __resource.lua │ └── traffic.lua ├── FiveM - Using Ace Permissions └── announce │ ├── __resource.lua │ ├── client.lua │ ├── perms.example.cfg │ ├── server.example.cfg │ └── server.lua ├── FiveM - Using FiveM NUI (CEF) └── nui │ ├── __resource.lua │ ├── html │ ├── index.html │ ├── listener.js │ ├── reset.css │ └── style.css │ └── main.lua ├── FiveM - Vehicle Modifications and Extras └── vehicle │ ├── client.lua │ ├── data │ ├── functions.lua │ ├── paints.lua │ ├── upgrades.lua │ └── vehicles.lua │ └── fxmanifest.lua ├── LICENSE ├── README.md ├── Setting Up Node.js (Javascript) ├── 1.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 9.png ├── example │ ├── index.js │ └── package.json └── script.md ├── Twitch Bot Part 1 └── twitchbot │ ├── README.md │ ├── bot.js │ └── package.json ├── Twitch Bot Part 2 - Command Handler └── twitchbot │ ├── .gitignore │ ├── README.md │ ├── bot.js │ ├── commands │ └── ping.js │ ├── package.json │ └── start.bat └── Zua - Full-Stack Web Application ├── .gitignore ├── Messaging API.postman_collection.json ├── README.md ├── client ├── API.js ├── actions.js ├── index.html └── utils.js ├── desktop_ui.png ├── media ├── backend.py ├── dev.bat ├── main.py └── script.md ├── mobile_ui.png └── server ├── database.json ├── db.js ├── index.js ├── package.json └── routing ├── author.js ├── author └── index.js ├── index.js ├── message.js ├── message ├── create.js ├── edit.js └── index.js └── middleware.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/.gitattributes -------------------------------------------------------------------------------- /2 - Setting Up/calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/2 - Setting Up/calculator.html -------------------------------------------------------------------------------- /2 - Setting Up/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/2 - Setting Up/script.md -------------------------------------------------------------------------------- /About the Channel/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/About the Channel/script.md -------------------------------------------------------------------------------- /FiveM - 100 sub special/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - 100 sub special/__resource.lua -------------------------------------------------------------------------------- /FiveM - 100 sub special/serious.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - 100 sub special/serious.lua -------------------------------------------------------------------------------- /FiveM - 100 sub special/weather.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - 100 sub special/weather.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/blips_old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/blips_old/README.md -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/blips_old/coords.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/blips_old/coords.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/blips_old/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/blips_old/fxmanifest.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/blips_old/main-s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/blips_old/main-s.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/blips_old/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/blips_old/main.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/coords.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/coords.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/fxmanifest.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/main-s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/main-s.lua -------------------------------------------------------------------------------- /FiveM - All About Blips...again/blips/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Blips...again/blips/main.lua -------------------------------------------------------------------------------- /FiveM - All About Vectors with Blips and 3D Text/vectors/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Vectors with Blips and 3D Text/vectors/__resource.lua -------------------------------------------------------------------------------- /FiveM - All About Vectors with Blips and 3D Text/vectors/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - All About Vectors with Blips and 3D Text/vectors/client.lua -------------------------------------------------------------------------------- /FiveM - Back to The Basics/basics/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Back to The Basics/basics/__resource.lua -------------------------------------------------------------------------------- /FiveM - Back to The Basics/basics/basic-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Back to The Basics/basics/basic-c.lua -------------------------------------------------------------------------------- /FiveM - Back to The Basics/basics/basic-s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Back to The Basics/basics/basic-s.lua -------------------------------------------------------------------------------- /FiveM - Configuring Your Server/example/server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Configuring Your Server/example/server.cfg -------------------------------------------------------------------------------- /FiveM - Configuring Your Server/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Configuring Your Server/script.md -------------------------------------------------------------------------------- /FiveM - Creating Your First Resource/code/help/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating Your First Resource/code/help/__resource.lua -------------------------------------------------------------------------------- /FiveM - Creating Your First Resource/code/help/help-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating Your First Resource/code/help/help-c.lua -------------------------------------------------------------------------------- /FiveM - Creating a Server/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating a Server/script.md -------------------------------------------------------------------------------- /FiveM - Creating a Speedometer Using Conditionals and Math/speedometer/__resource.lua: -------------------------------------------------------------------------------- 1 | client_script "speedometer-c.lua" -------------------------------------------------------------------------------- /FiveM - Creating a Speedometer Using Conditionals and Math/speedometer/speedometer-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating a Speedometer Using Conditionals and Math/speedometer/speedometer-c.lua -------------------------------------------------------------------------------- /FiveM - Creating a menu with NativeUI Lua/menu/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating a menu with NativeUI Lua/menu/__resource.lua -------------------------------------------------------------------------------- /FiveM - Creating a menu with NativeUI Lua/menu/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Creating a menu with NativeUI Lua/menu/menu.lua -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/.gitignore -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/README.md -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/bot.js -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/fxmanifest.lua -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/package.json -------------------------------------------------------------------------------- /FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Bot Resource that Runs with FXServer (discord.js)/discordbot/utils/index.js -------------------------------------------------------------------------------- /FiveM - Discord Rich Presence/RichPresence/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Rich Presence/RichPresence/__resource.lua -------------------------------------------------------------------------------- /FiveM - Discord Rich Presence/RichPresence/discord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Discord Rich Presence/RichPresence/discord.lua -------------------------------------------------------------------------------- /FiveM - Draw Marker, Warp, and Teleporting/warps/fxmanifest.lua: -------------------------------------------------------------------------------- 1 | fx_version "bodacious" 2 | games {"gta5"} 3 | 4 | client_script "src/*.lua" -------------------------------------------------------------------------------- /FiveM - Draw Marker, Warp, and Teleporting/warps/src/locations.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Draw Marker, Warp, and Teleporting/warps/src/locations.lua -------------------------------------------------------------------------------- /FiveM - Draw Marker, Warp, and Teleporting/warps/src/loop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Draw Marker, Warp, and Teleporting/warps/src/loop.lua -------------------------------------------------------------------------------- /FiveM - Draw Marker, Warp, and Teleporting/warps/src/notify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Draw Marker, Warp, and Teleporting/warps/src/notify.lua -------------------------------------------------------------------------------- /FiveM - Emotes (Tasks and Ped Scenarios)/emotes/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Emotes (Tasks and Ped Scenarios)/emotes/__resource.lua -------------------------------------------------------------------------------- /FiveM - Emotes (Tasks and Ped Scenarios)/emotes/emotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Emotes (Tasks and Ped Scenarios)/emotes/emotes.lua -------------------------------------------------------------------------------- /FiveM - Emotes (Tasks and Ped Scenarios)/emotes/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Emotes (Tasks and Ped Scenarios)/emotes/main.lua -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/__resource.lua -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.css -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.html -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/index.js -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/html/reset.css -------------------------------------------------------------------------------- /FiveM - FiveM NUI (Inputs, Values, etc)/nui2/nui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - FiveM NUI (Inputs, Values, etc)/nui2/nui.lua -------------------------------------------------------------------------------- /FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/__resource.lua -------------------------------------------------------------------------------- /FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/functions.lua -------------------------------------------------------------------------------- /FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/guns-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/guns-c.lua -------------------------------------------------------------------------------- /FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - GTA V Natives, Key Press, Giving Weapons/code/guns/weapons.lua -------------------------------------------------------------------------------- /FiveM - Game Events/game_events/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Game Events/game_events/fxmanifest.lua -------------------------------------------------------------------------------- /FiveM - Getting values in MYSQL/mysql/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Getting values in MYSQL/mysql/__resource.lua -------------------------------------------------------------------------------- /FiveM - Getting values in MYSQL/mysql/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Getting values in MYSQL/mysql/client.lua -------------------------------------------------------------------------------- /FiveM - Getting values in MYSQL/mysql/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Getting values in MYSQL/mysql/server.lua -------------------------------------------------------------------------------- /FiveM - HTTP Methods and API Usage with Webhooks/webhook/__resource.lua: -------------------------------------------------------------------------------- 1 | server_script "webhook_s.lua" -------------------------------------------------------------------------------- /FiveM - HTTP Methods and API Usage with Webhooks/webhook/webhook_s.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - HTTP Methods and API Usage with Webhooks/webhook/webhook_s.lua -------------------------------------------------------------------------------- /FiveM - Inserting values in MYSQL/mysql/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Inserting values in MYSQL/mysql/__resource.lua -------------------------------------------------------------------------------- /FiveM - Inserting values in MYSQL/mysql/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Inserting values in MYSQL/mysql/client.lua -------------------------------------------------------------------------------- /FiveM - Inserting values in MYSQL/mysql/main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Inserting values in MYSQL/mysql/main.sql -------------------------------------------------------------------------------- /FiveM - Inserting values in MYSQL/mysql/resources.example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Inserting values in MYSQL/mysql/resources.example.cfg -------------------------------------------------------------------------------- /FiveM - Inserting values in MYSQL/mysql/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Inserting values in MYSQL/mysql/server.lua -------------------------------------------------------------------------------- /FiveM - Intro to JS Scripting/jsChat/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Intro to JS Scripting/jsChat/__resource.lua -------------------------------------------------------------------------------- /FiveM - Intro to JS Scripting/jsChat/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Intro to JS Scripting/jsChat/src/client.js -------------------------------------------------------------------------------- /FiveM - Intro to JS Scripting/jsChat/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Intro to JS Scripting/jsChat/src/server.js -------------------------------------------------------------------------------- /FiveM - JS Loops and Ticks/jsThread/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - JS Loops and Ticks/jsThread/__resource.lua -------------------------------------------------------------------------------- /FiveM - JS Loops and Ticks/jsThread/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - JS Loops and Ticks/jsThread/main.js -------------------------------------------------------------------------------- /FiveM - JS Loops and Ticks/jsThread/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - JS Loops and Ticks/jsThread/wait.js -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/__resource.lua -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/html/index.html -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/html/jeva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/html/jeva.png -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/html/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/html/main.css -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/html/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/html/main.js -------------------------------------------------------------------------------- /FiveM - Loadscreens with loadbars and music/loadscreen/html/song.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Loadscreens with loadbars and music/loadscreen/html/song.mp3 -------------------------------------------------------------------------------- /FiveM - More Natives, Spawning Cars, Tables/guns/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - More Natives, Spawning Cars, Tables/guns/__resource.lua -------------------------------------------------------------------------------- /FiveM - More Natives, Spawning Cars, Tables/guns/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - More Natives, Spawning Cars, Tables/guns/functions.lua -------------------------------------------------------------------------------- /FiveM - More Natives, Spawning Cars, Tables/guns/guns-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - More Natives, Spawning Cars, Tables/guns/guns-c.lua -------------------------------------------------------------------------------- /FiveM - Ped AI and Manipulation/peds/__resource.lua: -------------------------------------------------------------------------------- 1 | client_script "ped_c.lua" -------------------------------------------------------------------------------- /FiveM - Ped AI and Manipulation/peds/ped_c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Ped AI and Manipulation/peds/ped_c.lua -------------------------------------------------------------------------------- /FiveM - Ragdoll keybind/ragdoll/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Ragdoll keybind/ragdoll/__resource.lua -------------------------------------------------------------------------------- /FiveM - Ragdoll keybind/ragdoll/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Ragdoll keybind/ragdoll/client.lua -------------------------------------------------------------------------------- /FiveM - Server Events and Chat Arguments/announce/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server Events and Chat Arguments/announce/__resource.lua -------------------------------------------------------------------------------- /FiveM - Server Events and Chat Arguments/announce/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server Events and Chat Arguments/announce/client.lua -------------------------------------------------------------------------------- /FiveM - Server Events and Chat Arguments/announce/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server Events and Chat Arguments/announce/server.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp/__resource.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp/client.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp/server.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp_test/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp_test/__resource.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp_test/cmds/client_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp_test/cmds/client_test.lua -------------------------------------------------------------------------------- /FiveM - Server and Client Sided Exports/exp_test/cmds/server_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Server and Client Sided Exports/exp_test/cmds/server_test.lua -------------------------------------------------------------------------------- /FiveM - Text and Rectangles/text/__resource.lua: -------------------------------------------------------------------------------- 1 | client_script "text-c.lua" -------------------------------------------------------------------------------- /FiveM - Text and Rectangles/text/text-c.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Text and Rectangles/text/text-c.lua -------------------------------------------------------------------------------- /FiveM - Traffic and Ped Density/traffic/__resource.lua: -------------------------------------------------------------------------------- 1 | client_script "traffic.lua" -------------------------------------------------------------------------------- /FiveM - Traffic and Ped Density/traffic/traffic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Traffic and Ped Density/traffic/traffic.lua -------------------------------------------------------------------------------- /FiveM - Using Ace Permissions/announce/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using Ace Permissions/announce/__resource.lua -------------------------------------------------------------------------------- /FiveM - Using Ace Permissions/announce/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using Ace Permissions/announce/client.lua -------------------------------------------------------------------------------- /FiveM - Using Ace Permissions/announce/perms.example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using Ace Permissions/announce/perms.example.cfg -------------------------------------------------------------------------------- /FiveM - Using Ace Permissions/announce/server.example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using Ace Permissions/announce/server.example.cfg -------------------------------------------------------------------------------- /FiveM - Using Ace Permissions/announce/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using Ace Permissions/announce/server.lua -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/__resource.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/__resource.lua -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/html/index.html -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/html/listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/html/listener.js -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/html/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/html/reset.css -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/html/style.css -------------------------------------------------------------------------------- /FiveM - Using FiveM NUI (CEF)/nui/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Using FiveM NUI (CEF)/nui/main.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/client.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/data/functions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/data/functions.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/data/paints.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/data/paints.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/data/upgrades.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/data/upgrades.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/data/vehicles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/data/vehicles.lua -------------------------------------------------------------------------------- /FiveM - Vehicle Modifications and Extras/vehicle/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/FiveM - Vehicle Modifications and Extras/vehicle/fxmanifest.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/README.md -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/1.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/3.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/4.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/5.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/6.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/7.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/9.png -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/example/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world") -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/example/package.json -------------------------------------------------------------------------------- /Setting Up Node.js (Javascript)/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Setting Up Node.js (Javascript)/script.md -------------------------------------------------------------------------------- /Twitch Bot Part 1/twitchbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 1/twitchbot/README.md -------------------------------------------------------------------------------- /Twitch Bot Part 1/twitchbot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 1/twitchbot/bot.js -------------------------------------------------------------------------------- /Twitch Bot Part 1/twitchbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 1/twitchbot/package.json -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | package-lock.json -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 2 - Command Handler/twitchbot/README.md -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 2 - Command Handler/twitchbot/bot.js -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 2 - Command Handler/twitchbot/commands/ping.js -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Twitch Bot Part 2 - Command Handler/twitchbot/package.json -------------------------------------------------------------------------------- /Twitch Bot Part 2 - Command Handler/twitchbot/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | node bot.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/.gitignore: -------------------------------------------------------------------------------- 1 | *package-lock.json 2 | *node_modules/ 3 | .vscode 4 | /media/*/ -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/Messaging API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/Messaging API.postman_collection.json -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/README.md -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/client/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/client/API.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/client/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/client/actions.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/client/index.html -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/client/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/client/utils.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/desktop_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/desktop_ui.png -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/media/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/media/backend.py -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/media/dev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/media/dev.bat -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/media/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/media/main.py -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/media/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/media/script.md -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/mobile_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/mobile_ui.png -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/database.json -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/db.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/index.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/package.json -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/author.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/author/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/author/index.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/index.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/message.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/message/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/message/create.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/message/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/message/edit.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/message/index.js -------------------------------------------------------------------------------- /Zua - Full-Stack Web Application/server/routing/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jevajs/Jeva/HEAD/Zua - Full-Stack Web Application/server/routing/middleware.js --------------------------------------------------------------------------------