제 애드온은

 

txt = string.format("%d / %d", cur, max)

 

문구에서

 

integer overflow attempting to store 2238358016
Locals:
(*temporary) = "%d / %d"
(*temporary) = 2238358016
(*temporary) = 2238358016

 

21억 넘어서 애러나는 문제 였습니다.

 

같은 문제 있으신분들은

 

 

txt = string.format("%.0f / %.0f", cur, max)

 

%d를 %.0f 로 바꿔주시면 %d 했을때 처럼 표시됩니다.