03.04.2020, 12:38
This happens because storage.get returns more than 1 value.
Either add another set of parentheses:
Or split it into two lines to make it more readable:
Either add another set of parentheses:
Code:
iLastTime = tonumber((storage.get(sUID, 0)))
Or split it into two lines to make it more readable:
Code:
value = storage.get(sUID, 0)
iLastTime = tonumber(value)