Quote Originally Posted by Dzonzi View Post
Can u write for me script if cap < 5 then looter stop?
and looter start when cap > 20
while true then
if (Self.Cap() < 5) then
Looter.Stop()
elseif (Self.Cap() > 20) then
Looter Start()
end
end