You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is common to order players with same highscore by timestamp, so that the first one to get this score is higher in rank. This is easily done with this module.
The issue is in increment command, when you add some score points what you actually want for timestamp part is not to increment it, but to update it to current time.
Suppose we have this scores for id
1000#1500000000
after this operation (illustration only, not the desired syntax):
exzincrbyandset key +10#=1689158754 id
result should be
1010#1689158754
The text was updated successfully, but these errors were encountered:
Fair leaderboards with timestamp and updates
Hi, another feature request for leaderboard here.
It is common to order players with same highscore by timestamp, so that the first one to get this score is higher in rank. This is easily done with this module.
The issue is in increment command, when you add some score points what you actually want for timestamp part is not to increment it, but to update it to current time.
Suppose we have this scores for
id
after this operation (illustration only, not the desired syntax):
result should be
The text was updated successfully, but these errors were encountered: