zezim Posted July 26, 2022 Share Posted July 26, 2022 (edited) Hey guys, all right I would like to know if it is still possible to steal my codes I am using Multi Theft Auto .luac protection, ip protection and putting cache="false" If yes, what would be the percentage? Edited July 26, 2022 by zezim Link to comment
zezim Posted July 27, 2022 Author Share Posted July 27, 2022 (edited) Whats up man? I would like to know if it is easy to decompile .luac files compiled with the tool https://luac.multitheftauto.com/ I don't want to know how to decompile, just if it's easy or not. I happen to have an ip protection that I downloaded for free from the internet. I got free IP protection on the internet and I want to use it. What percentage do they decompile my file and overwrite the ip code? A little about the code: local server_ip = 'YOUR IP HERE' local server_port = 22003 local Protect = { ["PROTECTED->getServerConfigSetting"] = true, ["PROTECTED->setServerConfigSetting"] = true } -- Event when resource starts addEventHandler("onResourceStart", resourceRoot, function ( ) -- Checking for originality of functions print('[PROTECT] Resource Started') print('[PROTECT] Checking functions for originality') if getServerPort() ~= server_port or getServerConfigSetting("serverip") ~= server_ip or not Protect["PROTECTED->getServerConfigSetting"] or not Protect["PROTECTED->setServerConfigSetting"] then print('[PROTECT] Bad Licence') local count = 0 debug.sethook() while true do coroutine.resume((coroutine.create( function() while true do outputDebugString("INVALID IP! PROTECTION BY ! FLOOD COUNT: " .. count) count = count + 1 end end))) end debug.sethook(_, debug.gethook()) cancelEvent() return false else print('[PROTECT] Good Licence') -- server code here end end) Edited July 27, 2022 by zezim Link to comment
Administrators Tut Posted July 27, 2022 Administrators Share Posted July 27, 2022 I have moved your other post into the existing thread @zezim, as it seems they share the same topic Link to comment
zezim Posted July 27, 2022 Author Share Posted July 27, 2022 4 minutes ago, Tut said: Movi seu outro post para o tópico existente@zezim, pois parece que eles compartilham o mesmo tópico hey friend, thanks so much. sorry for it. 6 minutes ago, Tut said: Movi seu outro post para o tópico existente@zezim, pois parece que eles compartilham o mesmo tópico The best admin from the forum 1 Link to comment
Moderators Vinyard Posted July 28, 2022 Moderators Share Posted July 28, 2022 On 26/07/2022 at 22:47, zezim said: Hey guys, all right I would like to know if it is still possible to steal my codes I am using Multi Theft Auto .luac protection, ip protection and putting cache="false" If yes, what would be the percentage? Your code will be fine if you're taking those precautions (using .luac & cache="false"). There's no percentage to give, but for someone to steal your code with these precautions in place would require a lot of effort & knowledge, so you don't have to worry that much. Link to comment
zezim Posted July 28, 2022 Author Share Posted July 28, 2022 3 hours ago, Vinyard said: Your code will be fine if you're taking those precautions (using .luac & cache="false"). There's no percentage to give, but for someone to steal your code with these precautions in place would require a lot of effort & knowledge, so you don't have to worry that much. Hey thanks so much s2 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now