Skip to content

NAKAMA is an open-source distributed social and realtime server for games and apps. It includes a large set of services for users, data storage, and realtime client/server communication; as well as specialized APIs like realtime multiplayer, groups/guilds, and chat. NAKAMA has advised that if anyone wants something customize or additional, they …

mirbozorgi-com/Nakama-Lua-Sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Intro of NAKAMA

NAKAMA is an open-source distributed social and realtime server for games and apps. It includes a large set of services for users, data storage, and realtime client/server communication; as well as specialized APIs like realtime multiplayer, groups/guilds, and chat.

NAKAMA has advised that if anyone wants something customize or additional, they should add RPC by writing Lua/Go/TypeScript scripts in order to customize and change the default behaviour of their functions.

In this repository I am using Lua scripts. I developed multiple function:

Notice: in Lua model all request type must be text

  • add leaderboard
  • server time
  • server date

add leaderboard

path:/v2/rpc/addleaderboard?http_key=mirbozorgi_admin
method:POST
desc:This api adds leaderboard to nakama
request model : text format

"{\"id\":\"uniuqeId\",\"metadata\":{\"name\":\"amqezi\"},\"sort\":\"desc\",\"operator\":\"incr\",\"reset\":\"0 1 * * *\"}"

`

Sort: desc, asc Operator: best, set, incr `

response model: { "payload": "{\"id\":\"uniuqeId\",\"metadata\":{\"name\":\"amqezi\"},\"sort\":\"desc\",\"operator\":\"incr\",\"reset\":\"0 1 * * *\"}" }

server time

path:/v2/rpc/servertime?http_key=mirbozorgi_admin
method:POST/GET
desc:This api returns server utc time
response model: { "payload": "1643523929" }

server date

path:/v2/rpc/serverdate?http_key=mirbozorgi_admin
method:GET/POST
desc:This api returns the human-readable server date
response model: { "payload": "{\"day\":23,\"hour\":6,\"isdst\":false,\"min\":46,\"month\":6,\"sec\":58,\"wday\":3,\"yday\":174,\"year\":2021}" }

About

NAKAMA is an open-source distributed social and realtime server for games and apps. It includes a large set of services for users, data storage, and realtime client/server communication; as well as specialized APIs like realtime multiplayer, groups/guilds, and chat. NAKAMA has advised that if anyone wants something customize or additional, they …

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages