Theme editor

  • If you experience issues login with Discord, reset your password, wait 3 minutes for the email!

STANDALONE Fivem Script License - Free!

Idanush#1111

New member
Joined
Oct 8, 2021
Messages
2
Reaction score
0
Points
0
Credits
175
Thread owner

Protect your fivem scripts!​

This is an open-source project that integrates a Python API, FiveM script, and a Discord bot to protect FiveM scripts from being leaked or used without a valid license key. The system requires a valid license key for each script to run, and without it, the script will not execute.

Features​

  • License Key Validation: Ensures that each FiveM script has a unique license key.
  • Python API: Manages license generation and validation.
  • FiveM Script: Lua code for easy integration with your FiveM server.
  • Discord Bot Integration: Monitor and manage licenses directly from Discord.
  • Open Source & Free: Fully open-source under the MIT License.

How It Works​

  1. Python API: Generates and validates license keys for each FiveM script.
  2. FiveM Script: Lua code connects to the API to check for a valid license before running any script.
  3. Discord Bot: Notifies and manages license statuses, offering an extra layer of monitoring.

Download Here

Stars in github will be appreciated :)
 
kinda useless it just same like checking ip on the script on wich script can be started on, if there was like timer for the license to expire than yes it would not be useless you can basically just use this on server side code wich is obfuscated

PerformHttpRequest('http://api.ipify.org/', function(err, text, headers)
if text == 'THE IP ADRESS' then
Wait(500)
print("^3#Authentication: ^2Authorized")
THE SERVER SIDE SCRIPT CODE
else
print("^3#Authentication: ^1Unauthorized")
Wait(12000)
os.exit()
end
end, 'GET', "")
 
Back
Top Bottom