08.07.2012, 15:00
I have used search and didn't found something that would really solve my problem. I'm converting seconds to hours and minutes like that:
My problem is that it doesn't convert big values like 34000. It doesn't show anything.
Is there any other way that would work?
pawn Code:
pData[playerid][p_online_time] / 3600 // hours
(pData[playerid][p_online_time / 60) % 60 // minutes
Is there any other way that would work?