XV-Dev Development menu for FiveM
Removes the need to make temporary commands to test out some code, or however you test scripts.
Features
- Execute any code using the Lua Executor
- Execute commonly used natives through the Quick Functions tab.
- Declare variables to be passed in to the functions
- Search through a predefined list of functions
- See all global variables that was declared
- Console to show if code was executed or returned an error
- Debug to show code that was executed
- History component that shows last 25 executions
- Auto Detection for QBCore and ESX
Changelog
- 22/11/2022
- Fixed fxmanifest, therefore wasnt working rip.
- Added Config for StrictMode to only allow certain licenses to access the client OR/AND server executor.
- Security Update
Installation
Download Link
Drag’N’Drop
If you want to automatically use this with QBCore or ESX, ensure this resource afterwards.
DO NOT
Do not do while true do
Instead declare a global variable to true and use that.
Example:
runWhile = true
while runWhile do
--run something
end
To turn it off
runWhile = false
To check for global variables declared in Quick Functions, check the History tabs to see its past states.
ALSO
Try to keep everything local, there are very specific cases that you need to make a global variable.
If you have suggestions for improvement, drop it below. This will most likely be updated regularly since I use it all the time.