Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
How could I make my lua script not record with bandicam, I have seen posts referring to it, however, I did not understand the implementation. Is there any lua script that already has anti-bandicam implemented?
How could I make my lua script not record with bandicam, I have seen posts referring to it, however, I did not understand the implementation. Is there any lua script that already has anti-bandicam implemented?
here is a simple example in Lua that checks if certain processes are running if they have access to the same functions
Lua:
function isBandicamRunning()
local handle = io.popen("tasklist")
local result = handle:read("*a")
handle:close()
return result:match("Bandicam.exe") ~= nil
end
if isBandicamRunning() then
print("Recording is prohibited.")
-- Disable the necessary functions
else
print("Recording is allowed.")
end
this code runs in an environment where Lua can call system commands, and it checks to see if Bandicam is running, but keep in mind that this is just one approach and it's impossible to 100% protect your content.