-
Notifications
You must be signed in to change notification settings - Fork 9
Participation Guide
-
Use "ROOM" form to set current room.
-
Sign up for a user of the room, the user can only be used in this room.
To sign in, you must provide the user ID, not the username.
-
Enter your numbers and submit.
-
You may get room list at the admin panel at
/admin
. -
You may change how many rounds' histories to be shown on the chart, by clicking "History Range" on the right-top of the dashboard.
-
You may get a user's submit & score history by clicking "Show" under History column of the user rank table (not including current unfinished round).
-
Use
POST("/users/:roomid")
to create a user for the room. -
Use
GET("/room/:roomid")
,GET("/user/:userid")
to get room history & user history.Then calculate your submits according to these data.
-
Use
POST("/user/:userid")
to submit your result. -
Use
GET("/sync/:roomid")
to get the time to wait until the next round.Then go back to step 2.