File size: 444 Bytes
d7c5875 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | script_name('ML-ReloadAll')
script_author('FYP')
script_description('Press Ctrl + R to reload all lua scripts. Also can be used to load new added scripts.')
if getMoonloaderVersion() >= 21 then
script_properties('work-in-pause')
end
--- Main
function main()
while true do
wait(40)
if isKeyDown(17) and isKeyDown(82) then -- CTRL+R
while isKeyDown(17) and isKeyDown(82) do wait(80) end
reloadScripts()
end
end
end
|