Hello there guys. Some time ago i create and develop Rust-Servers.Info monitoring, and want to add players trackin, but can't get players SteamID, only name and playtime.
At this moment i'm working on player stats tracker and need plugin that gather player stats and post it in json array to webhook for example every 5 minutes.
Array structure must be like this:
At this moment i'm working on player stats tracker and need plugin that gather player stats and post it in json array to webhook for example every 5 minutes.
Array structure must be like this:
array(
array(
"steamid" => "76561197997238749",
"nickname" => "Mo45",
"points" => 934,
"playtime" => 8978
),
array(
"steamid" => "76561198078634193",
"nickname" => "a1",
"points" => 456,
"playtime" => 2772
),
array(
"steamid" => "76561197983153126",
"nickname" => "timetraveler",
"points" => 6,
"playtime" => 123
)
);SteamID, Nickname, Playtime - required values. Points, and other stats are optional, for more detailed stats.
