Log in

View Full Version : Druid No Soul, then Logout



Washand
08-01-2016, 11:49 PM
Hello,

need a .lua when soul are < 4 (or less) force logout and if is possible close client. :D

Zingron
08-02-2016, 12:00 AM
Module.New('SoulChecker', function(ExitClient)
if Self.Soul() <= 4 then
wait(1000)
os.exit()
end
ExitClient:Delay(5000)
end)