- 1
- 1
скрипт завершается и почему? даже если я ввожу правильную ссылку dll и имя dll
Lua:
local injector = require("injector")
local file = getGameDirectory()..'\\name.dll'
local url = 'dll link'
function main()
while not isSampAvailable() do wait(333) end
sampRegisterChatCommand('inj', inject)
end
function inject()
downloadUrlToFile(url, file)
local bytes = injector:string_to_bytes(file)
injector:inject(bytes)
end