Best-Killer Posted December 17, 2016 Share Posted December 17, 2016 turftimes = setTimer ( sendTurfPayout, (60*tonumber(get("*PAYOUT_TIME")))*1000, 0 ) turftim = getTimerDetails(turftimes) outputChatBox ( ""..turftim.."",p,255,0,0,true) the timer is 1hour (3600) and i'm geting it in chatbox 3600000 i want get it like 60 minute , 59 Minute , how i can do it ? Link to comment
MR.S3D Posted December 17, 2016 Share Posted December 17, 2016 turftimes = setTimer ( sendTurfPayout, (60*tonumber(get("*PAYOUT_TIME")))*1000, 0 ) local turftim,_,_ = getTimerDetails(turftimes) local total = turftim / 60 / 1000 outputChatBox ( ""..total.." minutes",p,255,0,0,true) 1 Link to comment
Best-Killer Posted December 18, 2016 Author Share Posted December 18, 2016 Thx s3d <3 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now